我遗漏了一些东西而且我不确定考虑到我遵循指南的原因是:https://developers.google.com/cloud-messaging/android/client
我的服务器端代码正确无法成功发送GCM
消息,但我的Android客户端没有收到任何内容。
我认为这个问题存在于清单中:
的Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mypackage.here"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="21" />
<permission
android:name="com.mypackage.here.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.mypackage.here.permission.C2D_MESSAGE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- C2DM service Receive -->
<!-- [START gcm_receiver] -->
<receiver
android:name="com.google.android.gms.gcm.GcmReceiver"
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="com.mypackage.here" />
</intent-filter>
</receiver>
<!-- [END gcm_receiver] -->
<!-- [START gcm_listener] -->
<service
android:name=".EPAOAGcmListenerService"
android:exported="false" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>
<!-- [END gcm_listener] -->
<!-- [START instanceId_listener] -->
<service
android:name=".EPAOAInstanceIDListenerService"
android:exported="false" >
<intent-filter>
<action android:name="com.google.android.gms.iid.InstanceID" />
</intent-filter>
</service>
<!-- [END instanceId_listener] -->
<service
android:name=".EPAOAGcmRegisterIntentService"
android:exported="false" >
</service>
<!-- C2DM service Receive End -->
</application>
</manifest>
我会注意到我正在注册并完全接收设备令牌。我只是无法接收消息(通知)。如果在查看清单时没有想到任何直接的想法,我们将不胜感激,如果对我应该看的下一个地方提出建议。
答案 0 :(得分:2)
简单的答案是:不用担心!第一次显然需要一些时间!这归功于Google服务器中发生的同步。
此外,如果通知可能需要15-28分钟的延迟,因为: 客户端电话上的GCM框架部分在端口5228上使用TCP连接。此连接用于推送通知,但是作为每个tcp连接,它可以在某些路由器/运营商超时时应用严格的策略来终止非活动的tcp连接( tcp idle timeout)。
大多数wifi路由器会在5分钟后杀死非活动连接,例如我的。
GCM框架使用保持活动机制在wifi上每15分钟发送一次心跳网络数据包,在3G上每28分钟发送一次。
答案 1 :(得分:-1)
您应该编写包的名称com.mutalminds.epaoa而不是com.mypackage.here。