Rafa Calin

Results 1 issues of Rafa Calin

I'm trying to track when a notification is received. I'm using `@react-native-firebase/messaging`. Current implementation: ``` messaging().setBackgroundMessageHandler(async (remoteMessage) => { await track("notification.received", { notification_id: remoteMessage.messageId, title: remoteMessage.notification?.title, }); }); ``` `setBackgroundMessageHandler`...

bug