GCM SERVICE_NOT_AVAILABLE错误

时间:2013-12-18 15:53:54

标签: java android google-cloud-messaging

我在我的Android应用程序中使用GCM,当我尝试使用GCM注册设备时(使用命令gcm.register(SENDER_ID))我收到SEVICE_NOT_AVAILABLE错误,我尝试了某人的建议here(接受的解决方案)我确实得到了注册ID。

为什么会这样?

Android清单:

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

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />

    <permission
        android:name="com.appspot.smartgan.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />

    <uses-permission android:name="com.appspot.smartgan.permission.C2D_MESSAGE" />

    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/Theme.AppCompat.Light" >
        <activity
            android:name="com.appspot.smartgan.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>

        <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.appspot.smartgan" />
            </intent-filter>
        </receiver>

        <service 
            android:name=".GcmIntentService"
            android:enabled="true" />

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

        <activity
            android:name="com.appspot.smartgan.LoginActivity"
            android:label="@string/title_activity_login"
            android:windowSoftInputMode="adjustResize|stateVisible" >
        </activity>
        <activity
            android:name="com.appspot.smartgan.ChildActivity"
            android:label="@string/title_activity_child" >
        </activity>
    </application>

</manifest>

注册方法:

private void registerInBackground() {   
    new AsyncTask<Void, Void, String>() {

        @Override
        protected String doInBackground(Void... params) {
            String message = "";

            try {
                if (gcm == null) {
                    gcm = GoogleCloudMessaging.getInstance(context);
                }
                regid = gcm.register(SENDER_ID);
                message = "Device registered, registration ID=" + regid;

                Log.d("SMARTGAN_PLAY", "register completed");

                // send registration id to the server
                sendRegistrationIdToServer();

                // Persist the regID - no need to register again.
                storeRegistrationId(context, regid);
            } catch (IOException e) {
                message = "Error:" + e.getMessage();
            }
            return message;
        }

    }.execute(null, null, null);
}

2 个答案:

答案 0 :(得分:2)

我认为问题与Google API项目中提到的允许的IP地址有关。 请检查项目的详细信息,并删除restrict use to IP address下的IP地址。我遇到了类似的问题。

答案 1 :(得分:0)

如果您收到注册ID,则表示您已成功将设备注册到GCM。

修改 以下是GCM的一个很好的教程:http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/

<receiver
        android:name="rockit.app.beardallstreetprimary.GCMBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <category android:name="rockit.app.beardallstreetprimary" />
        </intent-filter>
    </receiver>

    <service android:name="com.google.android.gcm.GCMIntentService" android:enabled="true" />

我的GCM是根据上面链接的教程设置的,所以如果你仔细阅读它以及它应该适合你,它看起来就像你不远了。我会说Manifest非常挑剔,你需要确保你完全链接你的包。

你也不需要注册意图