我正在尝试首次在应用中设置推送通知。我认为服务器端是正常的(发送给谷歌的消息返回状态代码200,我看到响应正文中的成功结果)。 但设备从不做任何事情:(
清单设置如下:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.package" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="my.package.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="my.package.permission.C2D_MESSAGE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/appName"
android:theme="@style/AppTheme" >
<activity
android:name="my.package.activity.MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name="com.google.android.gms.gcm.GcmReceiver"
android:enabled="true"
android:exported="true"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="my.package" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
</intent-filter>
</receiver>
<service
android:name=my.package.NotificationListenerService"
android:exported="false" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>
</application>
</manifest>
NotificationListenerService是这样的:
public class NotificationListenerService extends GcmListenerService {
@Override
public void onMessageReceived(String from, Bundle data) {
String message = data.getString("message");
Log.d("MyApp", "message);
Notification.ShowNotification("test", getApplicationContext());
}
}
我认为根据https://developers.google.com/cloud-messaging/android/client我需要的一切(除了处理我尚未添加的重置令牌的东西。我的令牌注册似乎可以工作,因为我可以看到开发控制台数据存储中的令牌。)
我试过看logcat但似乎没有明显的东西出现。我需要以某种方式“启动”服务吗?文档建议不要......我显然错过了一些基本的东西!
答案 0 :(得分:0)
发送邮件时,服务器通常会收到message_id作为回复。使用带有message_id的诊断工具可能有助于确保GCM正确地中继消息。
您的设备上的Google Play服务是最新的吗?