Replies: 3 comments
-
|
I've been stuck on an old version because of this issue too, when using expo-notifications with the latest version of react-native-firebase/messaging i am no longer able to present local notifications |
Beta Was this translation helpful? Give feedback.
-
|
Hmm - this is logged as a discussion but that won't prompt focused attention in our workflows on this repository. Is this logged as an issue anywhere? If so, we should discuss there with a reproduction and full version information, if not, I'd be grateful if an issue was created with that information and linked here 🙏 |
Beta Was this translation helpful? Give feedback.
-
|
It's working for me with version 23.8.8 For more info refer React native firebase foreground notifications With this approach there's no need to perform step 2 (Handle FCM messages). Just step 1 is sufficient. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm experiencing an issue where foreground push notifications stopped working on iOS after upgrading from
@react-native-firebase/messagingv23.8.4 to v23.8.6.Environment
@react-native-firebase/messaging: 23.8.6expo: 54.0.32expo-notifications: 0.32.12react-native: 0.81.5What I've tried
1. Set up notification handler
2. Handle FCM messages
3. Added firebase.json
{ "react-native": { "messaging_ios_foreground_presentation_options": [] } }Current behavior (v23.8.6)
handleNotificationis called successfullyscheduleNotificationAsynccompletes without errorsWorking behavior (v23.8.4)
Question
Is there a breaking change or configuration change between v23.8.4 and v23.8.6 that I'm missing? The exact same code works perfectly in v23.8.4 but fails to display notifications in v23.8.6.
I suspect this might be related to PR #8786 (delegate call order changes in
willPresentNotification), but I'm not sure how to properly configure it for the new version.Any help would be greatly appreciated!
Logs
Everything appears to work in logs, but no visual notification appears.
Beta Was this translation helpful? Give feedback.
All reactions