Android app not receiving Firebase Notification when app is stopped from multi-task tray

AndroidFirebaseFirebase Cloud-MessagingFirebase Notifications

Android Problem Overview


I have read a similar question on SO, however, I was not able to get the correct answer from it.

I have a system wherein we send notification to around 500 devices.

Unfortunately, many of these devices are not receiving the notification. I have found that OPPO F1 series phones are particularly not getting the notification.

I have observed that this occurs if the app is stopped from multi-task tray. How do I resolve this?

Update: I have observed that when I close the app from task-tray, my app is forced stop in application manager. While when I close Whatsapp from task-tray, it is still not forced stop. How is that being handled by Whatsapp?

Android Solutions


Solution 1 - Android

Update 03/2017 - Including a part of my answer here.

For the topic with regards to swipe closed/killed/force stopped, this topic has been discussed for quite some time and there doesn't seem to be a definite answer. During one of my testings, I am able to still receive a message (tested with a data-only message payload) if I Swipe close my app. But when I force closed it from the Settings menu, I wasn't able to receive any messages. Do note that this is not always the behavior.

There are some devices that were designed that when you swipe close the app, it will be the same as force stopping them (see my answer here).

There are also devices where even if the app is still just simply swiped away, even though it's not force closed, the device itself is preventing it from receiving messages. Others say that this can't be the case because apps like WhatsApp were able to do it. The reason I've learned so far for that is because the device manufacturers have whitelisted most of the well-known apps for it to be possible.

This is not documented anywhere because (IMO), this is a topic that depends also on the device and that FCM has no total control over.


Original Answer:

Since it's device specific (as you mentioned in your post: OPPO F1 series phones), it may very well be possible that when an app is stopped from multi-task tray in that device, it is actually killing the app, causing the services and other background processes associated with it to also be destroyed. See this answer for a little more idea of what I'm trying to say.

If you search around the community, what is commonly suggested here is to make use of the START_STICKY flag. However, I've seen that it was previously mentioned before for FirebaseMessagingService (see this post, comment by @ArthurThompson):

>These services will be started by Google Play services, which is always running on the device. You don't have to and should not start/stop these services yourself.

With that said, there is also the possibility of (again from the comments):

>There may be a setting on the device that allows/disallows this.


I suggest doing further testing if the services are being killed by the device itself or see if there are settings that are blocking the notifications.

Solution 2 - Android

Have you tried to use stopWithTask attribute on your service class?

<service
    android:name="com.yourapp.YourPushService"
    android:stopWithTask="false" />

> If set to true, this service with be automatically stopped when the > user remove a task rooted in an activity owned by the application. The > default is false.

If the flag is false, there is an onTaskRemoved callback in your Service class.

In the case you can detect the "swipe" event, and you can implement a workaround.

Solution 3 - Android

I've been through the same but in my case, it was Xiaomi phones instead of Oppo phones. What actually happens is that when you close the app from system tray, the system kills the app entirely. What that means is your app won't be able to receive notifications via GCM/FCM. WAKE_LOCK permission doesn't help either.

That does NOT mean that phone is not receiving the notification. It is. It just won't let the apps show it. You can verify this by sending a broadcast from adb and looking at your logcat.

One possible solution to this problem is to use SyncAdapter. Although it is NOT advised, I've seen some apps using it. Other possible solutions are to use some kind of background service which is always running. Some people also use AlarmManager as it almost never gets killed. My point is - you cannot rely on GCM/FCM for your notifications.

Let's talk about WhatsApp now -

In Xiaomi phones, they whitelist or blacklist an app based on certain criteria. If you download an app and if it is in their whitelist, they'll permit the app to show notifications. If not, you already know what happens. But the good thing is that you can change these settings. Look for an app named Security. If you revoke the right permissions, even WhatsApp will stop showing notifications.

Solution 4 - Android

I was also facing the same issue, But then I realized after lots of debugging that, i was stopping the services that receive the Firebase notifications in on stop method of one of the activities.

  1. Please check whether you are stopping these services anywhere in the app.
  2. Make sure you are using service and not intent-service.
  3. Swiping the app will never stop services. So try to debug the app for first two point.

Solution 5 - Android

Answer was found here

There are no way to send data message from notification console.

But there are other way to send notification to devices and them will be catch inside onMessageReceived!

You need can use terminal (Mac or Linux) or some service like Postman to send Post request on this link: https://fcm.googleapis.com/fcm/send

with the next body:

{
    "to": "/topics/your_topic_here",
   "data": {
       "text":"text",
       "text1":"text1",
       ...
   }
}

also you need to add 2 headers:

  1. Authorization - key=your_server_key_here
  2. Content-Type - application/json

To get your server key, you can find it in the firebase console: Your project -> settings -> Project settings -> Cloud messaging -> Server Key

enter image description here

enter image description here

Solution 6 - Android

I am using MoEngage Push notification service to send push notifications.

The solution is to initialise the PushNotification object/service in Application class of Android , instead of MainActivity.

Then notifications will be received in killed state as well.

How to call from Application class

Declare the class name which will be the Application class inside application tag in your androidManifest.xml file

<application
        android:name="App" //class name that will be an Application class
        android:label="@string/app_name"
        android:fullBackupContent="@xml/backup_descriptor"
        android:usesCleartextTraffic="true"
        android:icon="@mipmap/ic_launcher">

This will be the App.kt class

class App: FlutterApplication() {
    override fun onCreate() {

        super.onCreate()
       //initialize your notification service here
      }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionmilan mView Question on Stackoverflow
Solution 1 - AndroidAL.View Answer on Stackoverflow
Solution 2 - AndroiddaneszView Answer on Stackoverflow
Solution 3 - AndroidthetanujView Answer on Stackoverflow
Solution 4 - AndroidMohammed AtifView Answer on Stackoverflow
Solution 5 - AndroidAndriy AntonovView Answer on Stackoverflow
Solution 6 - AndroidAkshay ChopraView Answer on Stackoverflow