Android app not receiving Firebase Notification wh

2018-12-31 01:55发布

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?

6条回答
人间绝色
2楼-- · 2018-12-31 02:11

When the app is closed, it shutdowns the service. You must to restart the service. See here

查看更多
不流泪的眼
3楼-- · 2018-12-31 02:13

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.

查看更多
唯独是你
4楼-- · 2018-12-31 02:13

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.

查看更多
情到深处是孤独
5楼-- · 2018-12-31 02:17

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

查看更多
像晚风撩人
6楼-- · 2018-12-31 02:25

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.
查看更多
骚的不知所云
7楼-- · 2018-12-31 02:26

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.

查看更多
登录 后发表回答