Android gcm推送通知在模拟器上完美运行但在设备上没有?

时间:2014-03-27 13:55:10

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

GCM服务器端工作正常。 GCM客户端适用于模拟器,但不适用于设备。 GCM服务正在为仿真器工作。

下面是我的manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.spidertechnologiesllp.yay"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="18" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <!-- GCM requires a Google account. -->
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />

    <!-- Keeps the processor from sleeping when a message is received. -->
    <uses-permission android:name="android.permission.WAKE_LOCK" />

    <!-- Creates a custom permission so only this app can receive its messages. -->
    <permission
        android:name="com.spidertechnologiesllp.yay.C2D_MESSAGE"
        android:protectionLevel="signature" />

    <uses-permission android:name="com.spidertechnologiesllp.yay.permission.C2D_MESSAGE" />

    <!-- This app has permission to register and receive data message. -->
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

    <!-- Permission to vibrate -->
    <uses-permission android:name="android.permission.VIBRATE" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/yayicon"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.spidertechnologiesllp.yay.YayTabActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <receiver
            android:name=".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.spidertechnologiesllp.yay" />
            </intent-filter>
        </receiver>
        <service
            android:name=".GCMNotificationIntentService"/>
        <activity
            android:name="com.spidertechnologiesllp.yay.YayPredictionActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
        </activity>
        <activity
            android:name="com.spidertechnologiesllp.yay.YayOptionsActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
        </activity>
        <activity
            android:name="com.spidertechnologiesllp.yay.YayLoginActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
        </activity>
        <activity android:name="com.facebook.LoginActivity" >
        </activity>

        <meta-data
            android:name="com.facebook.sdk.ApplicationId"
            android:value="@string/app_id" />

    </application>

</manifest>

自2天以来一直在挣扎。 任何帮助都会得到赞赏!!!

1 个答案:

答案 0 :(得分:1)

你没有在com.spidertechnologiesllp.permission缺少权限

在清单文件中替换它 <permission android:name="com.spidertechnologiesllp.yay.permission.C2D_MESSAGE" android:protectionLevel="signature" />