为了正确实施GCM,应根据the official docs为接收方指定com.google.android.c2dm.SEND
权限:
接收方应该要求com.google.android.c2dm.SEND权限,以便只有GCM框架才能向其发送消息。
但是,当我添加该权限时,收到邮件时会收到此错误。
W / GTalkService(25224):[DataMsgMgr]广播意图回调:result = CANCELED forIntent {act = com.google.android.c2dm.intent.RECEIVE cat = [com.XXX.XXX](有额外内容)} < / p>
后面是这个错误:
W / ActivityManager(283):权限拒绝:从com.google广播Intent {act = com.google.android.c2dm.intent.RECEIVE cat = [com.XXX.XXX] flg = 0x10(有额外内容)}由于接收者com.XXX.XXX/com.XXX.XXX.GcmBroadcastReceiver
,.android.syncadapters.contacts需要com.google.android.c2dm.SEND。
如果我仅删除该权限,而不更改任何其他内容,则接收器正常工作,我可以处理该消息。
这是AndroidManifest.xml中的接收器定义
<receiver
android:name="com.XXX.XXXX.GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.XXX.XXX" />
</intent-filter>
</receiver>
我在测试期间使用调试证书,以防可能相关。
答案 0 :(得分:5)
尝试使用com.google.android.c2dm.permission.SEND
代替com.google.android.c2dm.SEND
,例如:
<receiver
android:name="GCMBroadcastReceiverCompat"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
<category android:name="com.commonsware.android.gcm.client"/>
</intent-filter>
</receiver>
(来自this sample app)
答案 1 :(得分:1)
试试这个:
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<receiver
android:name="com.robustastudio.mateegy.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="com.robustastudio.mateegy" />
</intent-filter>
</receiver>