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
Things are working perfectly fine in case of debug mode, but after generating a release build and receiving the push notification, notificationTapped event is not coming even after tapping on the push notification.
Only getting tokenReceived notification in release build.
The text was updated successfully, but these errors were encountered:
ashutoshtracky
changed the title
notificationTapped event is not happening in case Application is not launched
notificationTapped event is not happening in case React Native Application is not launched
Dec 20, 2024
Things are working perfectly fine in case of debug mode, but after generating a release build and receiving the push notification, notificationTapped event is not coming even after tapping on the push notification.
Only getting tokenReceived notification in release build.
Kindly provide a solution for the same.
useEffect(() => {
mobileMessaging.supportedEvents.forEach(event => {
let subscription = mobileMessaging.subscribe(event, eventData => handleMobileMessagingEvent(event, eventData),);
subscriptions.push(subscription);
});
}, [subscriptions]);
The text was updated successfully, but these errors were encountered: