Android ICS上的GCM通知无效

时间:2014-08-17 13:43:02

标签: android notifications push-notification google-cloud-messaging

我正在使用带有android 4.3的三星s3和带有android 4.0.4的LG双版(仅从2.3更新) 如果我测试我的应用程序在三星它的工作,我收到通知(GCM),一切都好,但如果我在Android上测试它与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>

1 个答案:

答案 0 :(得分:1)

根据您的清单,您的意图服务类与应用程序的主程序包不在同一个程序包中。

该应用的套餐为com.example.test,服务套餐为com.example.test.service

因此,此代码将在错误的包中寻找intent服务类:

ComponentName comp = new ComponentName(context.getPackageName(),
                                       GcmIntentService.class.getName());

尝试将其更改为:

ComponentName comp = new ComponentName(GcmIntentService.class.getPackage().getName(),
                                       GcmIntentService.class.getName());