2

アプリのプッシュ通知に Gcm サービスを使用しています。

このリンクを使用しています

クライアントを登録した後、プッシュ通知を受信できません。

サーバーからプッシュを受信するのに役立ちます。

4

1 に答える 1

2

Sender ID と API ID の両方を確認する必要があります。その後、以下のような Android マニフェスト ファイルを確認する必要があります。

<permission
    android:name="your packagename.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />
<uses-permission android:name="your package name.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"        />
<receiver
        android:name="com.google.android.gcm.GCMBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>

            <!-- Receives the actual messages. -->
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <!-- Receives the registration id. -->
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <category android:name="your package name" />
        </intent-filter>
</receiver>

<service android:name="your package name.GCMIntentService" />
于 2013-04-17T13:43:40.830 に答える