GCMRegistrar检查Manifest崩溃我的应用程序

时间:2013-07-18 21:15:18

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

我遇到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>

1 个答案:

答案 0 :(得分:1)

checkManifest检查您的清单是否包含GCM工作所需的定义。 当缺少某些东西时,它会抛出IllegalStateException

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

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

最后,正如CommonsWare建议的那样,GCMRegistrar已被弃用,我们鼓励您使用GoogleClassMessaging类。