g123k / flutter_app_badger

Support to update the app badge on the launcher (both for Android and iOS)
https://pub.dev/packages/flutter_app_badger
Apache License 2.0
307 stars 172 forks source link

Can not update the app badger in Android when the app is killed #50

Closed lakerszhy closed 3 years ago

lakerszhy commented 3 years ago

When the app is killed, and recevice a notification, i can not update the app badger, version is 1.3.0

kamranbekirovyz commented 3 years ago

Hi.

If you use Firebase Cloud Messaging for notifications, consider updating app badge count in FirebaseMessaging.onBackgroundMessage method where it is called while app is terminated and receives a FCM.

For more info on how to use FirebaseMessaging.onBackgroundMessage properly, consider reading official docs for firebase_messaging plugin and check out its /example folder for its implementation example.

lakerszhy commented 3 years ago

@kamranbekirovyz Thank you.