我的GCMRegistrar遇到问题,这是代码:

// Make sure the device has the proper dependencies.
GCMRegistrar.checkDevice(this);
GCMRegistrar.checkManifest(this); <- this line is the problem (I suppose)
regId = GCMRegistrar.getRegistrationId(this);


当我将该行更改为注释时,应用程序不会崩溃,但是regId为空,当我尝试使用该行时,它会使我的应用程序崩溃,我不知道为什么,希望您能为我提供帮助。 :)

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

<uses-sdk android:minSdkVersion="8" />

<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.chattest1.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.example.chattest1.permission.C2D_MESSAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.chattest1.RegisAct"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.example.chattest1.Main"
        android:label="@string/title_activity_regis" >
    </activity>
</application>

</manifest>

最佳答案

checkManifest检查清单是否包含GCM起作用所需的定义。
缺少某些内容时将抛出IllegalStateException

在您的情况下,您缺少可以从GCM接收消息的广播接收器。

GCMRegistrar.getRegistrationId(this)(返回本地存储的注册ID)仅在您首先调用GCMRegistrar.register时才返回非空值。请注意,GCMRegistrar.register是非阻塞的,因此响应不会立即到达。

最后,如CommonsWare所建议,不建议使用GCMRegistrar,建议您改用GoogleClassMessaging类。

08-18 06:49