Have you ever received a push notification message on Google's GCM?

Asked 1 years ago, Updated 1 years ago, 78 views

We are creating a program that provides PUSH notifications using GCM.
There are cases where the Android device is notified of Push, but the notification details are not received.
There are no errors from GCM.

I wonder if the telegraphic message notified by Push is sometimes lost.
If anyone knows, could you please let me know?

android gcm

2022-09-30 11:03

1 Answers

Firebase Cloud Messaging seems to have improved the reliability of the Message Push, but GCM may not reach clients.
Here are some of the topics mentioned in , so I hope it will be helpful.

Other features added in Android 6.0 Doze must be a high-priority Push or it will be discarded according to the TTL.

when using normal priority (the default priority), there are a number of different behavior when the device is in Doze, including:

  • The most important change is that messages will be hit for devices in Doze. When the device entries idle maintenance window, the batch of messages will be received.
  • Wediscard messages where time_to_live expires while the device is in Doze (including TTL=0).

How Google Cloud Messaging handles Doze in Android 6.0 Marshmallow


2022-09-30 11:03

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.