Android ICS 上的 GCM 通知不起作用
Posted
技术标签:
【中文标题】Android ICS 上的 GCM 通知不起作用【英文标题】:GCM notifications on Android ICS not working 【发布时间】:2014-08-17 13:43:02 【问题描述】:我正在使用带有 android 4.3 的三星 s3 和带有 android 4.0.4 的 LG dual(刚刚从 2.3 更新) 如果我在三星上测试我的应用程序,它可以工作,我会收到通知 (GCM),一切正常,但如果我在 LG 上使用 android ICS 测试它,应用程序可以工作,但我没有收到通知。
我使用这个类来接收通知
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver
@Override
public void onReceive(Context context, Intent intent)
// Explicitly specify that GcmIntentService will handle the intent.
ComponentName comp = new ComponentName(context.getPackageName(),
GcmIntentService.class.getName());
// Start the service, keeping the device awake while it is launching.
startWakefulService(context, (intent.setComponent(comp)));
setResultCode(Activity.RESULT_OK);
有什么想法吗? 谢谢!
更新
这是清单(我省略了所有活动)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test">
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<permission
android:name="com.example.test.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.test.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:launchMode="singleTop"
android:theme="@style/AppTheme">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.example.test.MainActivity"
android:label="@string/app_name"
>
<intent-filter>
<action android:name="android.intent.action.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<receiver
android:name="com.example.test.GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<!-- Receives the actual messages. -->
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.example.test" />
</intent-filter>
</receiver>
<service android:name=".service.GcmIntentService" />
<service android:name=".service.UpdateOptionService" />
<service android:name=".service.UpdateUserService" />
</application>
</manifest>
【问题讨论】:
您可以在问题中包含您的清单吗? 您是否检查过 LG 设备是否已注册并拥有 GCM Id 是的,LG 设备已使用 GCM id 在我的数据库中正确注册 【参考方案1】:根据您的清单,您的意图服务类与您应用的主包不在同一个包中。
应用包为com.example.test
,服务包为com.example.test.service
。
因此,此代码会在错误的包中查找意图服务类:
ComponentName comp = new ComponentName(context.getPackageName(),
GcmIntentService.class.getName());
尝试将其更改为:
ComponentName comp = new ComponentName(GcmIntentService.class.getPackage().getName(),
GcmIntentService.class.getName());
【讨论】:
我尝试更改该行,但它仍然无法正常工作...如果我尝试将通知从 samsung (4.3) 发送到 Lg(4.0) 不起作用,而是从 lg 发送到 samsung没关系。以上是关于Android ICS 上的 GCM 通知不起作用的主要内容,如果未能解决你的问题,请参考以下文章