приходят только при свёрнутом/закрытом приложении (Android, ios не проверял):
this.notificationListener = firebase.notifications().onNotification((notification: Notification) => {
console.log("notification")
});
у меня срабатывал когда приложение открыто и приходит нотификация
решил проблему. Необходимо добавить <application ...> <service android:name="io.invertase.firebase.messaging.RNFirebaseMessagingService"> <intent-filter> <action android:name="com.google.firebase.MESSAGING_EVENT" /> </intent-filter> </service> <service android:name="io.invertase.firebase.messaging.RNFirebaseInstanceIdService"> <intent-filter> <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/> </intent-filter> </service> </application>
Обсуждают сегодня