GCM の登録 ID とは何ですか?プッシュ通知の登録 ID を取得するにはどうすればよいですか? 説明していただけますか。
質問する
147 次
1 に答える
0
コード内-
GCMRegistrar.checkManifest(this);
GCMRegistrar.checkDevice(this);
GCMRegistrar.register(this, SENDER_ID);//this line just initiates the process of registration and the onRegistered() of GCMBaseIntentService will be called when regId is assigned
String regId = GCMRegistrar.getRegistrationId(this);
マニフェストで-
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="package name" />
</intent-filter>
</receiver>
上記をアプリケーションタグに追加します。
いくつかの権限も追加します-
<permission
android:name="com.vaayoo.android.pushnotify.shail.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.vaayoo.android.pushnotify.shail.permission.C2D_MESSAGE"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
このコードは私にとっては適切に機能します。
于 2012-09-14T10:31:17.040 に答える