You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using firebase_messaging 5.1.6 woking perfect on android,
the issue is only on ios when app is terminated data message not received even in myBackgroundMessageHandler, when app is in background message received in onResumed
my device is iphone8 version 13.1.3. Push Notifications and Background Modes enabled. Below is my code snippet,
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
Hi @mudi256
I see there's an open issue addressing the case you described.
Please follow up on that issue,
I'm closing the current one as duplicate.
If you disagree please write in the comments
and I will reopen it.
Thank you
Uh oh!
There was an error while loading. Please reload this page.
I'm using firebase_messaging 5.1.6 woking perfect on android,
the issue is only on ios when app is terminated data message not received even in myBackgroundMessageHandler, when app is in background message received in onResumed
my device is iphone8 version 13.1.3. Push Notifications and Background Modes enabled. Below is my code snippet,
final FirebaseMessaging _firebaseMessaging = FirebaseMessaging();
_firebaseMessaging.requestNotificationPermissions(IosNotificationSettings(sound: true, badge: true, alert: true));
_firebaseMessaging.onIosSettingsRegistered.listen((IosNotificationSettings settings){ });
_firebaseMessaging.configure( onMessage: (Map<String, dynamic> message) async { print("onMessage:$message") },
onBackgroundMessage: myBackgroundMessageHandler,
onLaunch: (Map<String, dynamic> message) async { print("onLaunch: $message"); },
onResume: (Map<String, dynamic> message) async { print("onResume: $message"); );
The text was updated successfully, but these errors were encountered: