Android background notifications with Firebase Cloud Messaging not received

前端 未结 3 1048
梦谈多话
梦谈多话 2021-01-15 06:08

I\'ve searched a lot about notifications when the app is in the background or closed. I\'m using Firebase Cloud Messaging by the way. It won\'t work for me. I\'ve used the A

3条回答
  •  逝去的感伤
    2021-01-15 06:29

    Firebase has different types of notifications, and each has special handling.

    • Assuming you're using a data push, you don't need special handling or a WakefulBroadcastReceiver.
    • If you're using a notification push, the notification will appear automatically in the system tray. You cannot do any special handling there.

    Check the official documents here: https://firebase.google.com/docs/cloud-messaging/android/receive

提交回复
热议问题