我已成功将Parse.com整合到Android app&我可以从数据浏览器接收推送通知,并将通知从android发送到ios ok。
当我尝试将通知从ios发送到android时,Android无法在我的自定义 MyPushReceiver 中接收。
Parse上的安装使用 deviceToken 编写。
我正在使用Parse v1.10.2
这是显而易见的:
Textbox
以下是应用程序中的代码:
<receiver
android:name=".push.MyPushReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT"/>
<action android:name="com.parse.push.intent.RECEIVE" />
<action android:name="com.parse.push.intent.DELETE" />
<action android:name="com.parse.push.intent.OPEN" />
</intent-filter>
</receiver>
<receiver
android:name="com.parse.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.mypackage" />
</intent-filter>
</receiver>
帮助我!