如果应用程序在某些设备中关闭,则GCM推送通知无效

时间:2015-11-13 16:26:19

标签: android google-cloud-messaging

我已关注Google的GCM setup guide及其example on Github来创建接收通知的应用。

什么时候起作用:

  • 应用程序已打开(所有设备)
  • 应用程序在后台(所有设备)
  • 应用已关闭(除了一个以外)

无法使用的手机:

  • 华为P8 lite
  • Android 5.1
  • Google Play服务8.3.01

这款手机工作正常,即使用户杀死应用程序,它也可以收到WhatsApp消息或任何其他类型的消息。

我担心在未经测试的许多其他设备中都会发生这种情况。所以我想展示一些代码,看看是否有任何问题。

这是我的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.presentation" >

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <!-- Keeps the processor from sleeping when a message is received. -->
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <!-- This app has permission to register and receive data message. -->
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

    <permission
        android:name="com.example.presentation.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission android:name="com.example.presentation.permission.C2D_MESSAGE" />

    <application
        android:name=".AndroidApplication"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <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" />
                <category android:name="com.example.presentation" />
                <!-- If you want to support pre-4.4 KitKat devices. -->
                <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
            </intent-filter>
        </receiver>
        <service android:name="com.example.data.gcm.RegistrationIntentService"
            android:exported="false" />
        <service
            android:name="com.example.data.gcm.MyGcmListenerService"
            android:exported="false" >
            <intent-filter>
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            </intent-filter>
        </service>
        <service
            android:name="com.example.data.gcm.MyInstanceIDListenerService"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.android.gms.iid.InstanceID"/>
            </intent-filter>
        </service>

    </application>

</manifest>

在项目级build.gradle中添加了此依赖项:

buildscript {
  repositories {
    jcenter()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:1.3.0'
    classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
    classpath 'com.google.gms:google-services:1.4.0-beta3'
  }
}

在应用级build.gradle中添加了此依赖关系:

compile "com.google.android.gms:play-services-gcm:8.1.0"

Java类与Github example相同。

为什么用户关闭应用时此设备无法正常工作,但它在我测试过的所有其他设备上都有效?

2 个答案:

答案 0 :(得分:1)

它是一个&#34;错误/功能&#34;华为设备。

Android - GCM - Not receiving push notifications on background

  

一旦你杀死了xiaomi上的应用程序,华为这些手机就会取消注册该应用程序的广播接收器服务。

     

如果收到通知,您的GCM广播接收者会在杀死&gt; app时取消注册,这可能就是原因。

用户必须在电池管理器上的同时列表中添加您的应用

https://www.forbes.com/sites/bensin/2016/07/04/push-notifications-not-coming-through-to-your-huawei-phone-heres-how-to-fix-it/#578f42bd1ccc

使用Android 5.0.1在华为Gra-L09上测试

<强>编辑:

您可以警告用户并启动受保护的应用程序管理器。

"Protected Apps" setting on Huawei phones, and how to handle it

答案 1 :(得分:0)

现在有一天,小米和LeEcho以及一些用于安全目的的新自定义操作系统会禁用每个应用程序的通知。按照以下步骤,一旦用清理工具退出应用程序,就会在后台接收消息。

<强> Settings -> Permissions (Just add your app here and done).