GCM 在 Android 4.1 设备上无法工作(引发错误)

问题描述 投票:0回答:1

我正在实现GCM,理论上它有一个合理的要求,Android 2.3:https://developers.google.com/cloud-messaging/android/client

问题是它在我的 Android 5.1 设备和 Android 4.4 设备中工作,但在我的 Android 4.1 设备、LG 和华为中不起作用。

我可以在 logcat 中看到此错误:由于错误 2,GooglePlayServices 不可用

在上一个链接中我可以看到这个:

如果您想支持 4.4 之前的 KitKat 设备,请添加以下内容 对接收者的意图过滤器声明的操作:

所以我添加了它,这是我在清单中添加的:

 <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <!-- GCM requires a Google account. -->
    <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Keeps the processor from sleeping when a message is received. -->
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> <!-- This app has permission to register and receive data message. --> 
<!-- Creates a custom permission so only this app can receive its messages. NOTE: APP_PACKAGE.permission.C2D_MESSAGE -->  
<permission android:name="com.myapp.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="com.myapp.permission.C2D_MESSAGE" /> 

   

<!-- BroadcastReceiver that will receive intents from GCM services and handle them to the custom IntentService. -->
<receiver
   android:name="com.google.android.gms.gcm.GcmReceiver"
   android:exported="true"
   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.myapp" />
    </intent-filter>
</receiver>
<service
   android:name="com.myapp.util.notifications.GCMListenerService"
   android:exported="false" >
    <intent-filter>
        <action android:name="com.google.android.c2dm.intent.RECEIVE" />
    </intent-filter>
</service>
<service
   android:name="com.myapp.util.notifications.CustomInstanceIDListenerService"
   android:exported="false">
    <intent-filter>
        <action android:name="com.google.android.gms.iid.InstanceID"/>
    </intent-filter>
</service>
   
<service
   android:name="com.myapp.util.notifications.RegistrationIntentService"
   android:exported="false">
</service>

这非常令人沮丧,因为两台设备都是 Android 4.1,远高于 Android 2.3。

同样在此之前,我旧的 GCM 实现(在 Google Play 服务起源之前,当时 GCM 是一个名为 gcm.jar 的 .jar 文件)在这些 4.1 设备上可以 100% 正常工作。

android push-notification google-cloud-messaging android-notifications android-notification-bar
1个回答
0
投票

在您正在测试的设备 4.1 中,首先您必须更新设备的 google play 服务..之后检查您的日志并显示日志以便我可以帮助您?

© www.soinside.com 2019 - 2024. All rights reserved.