大家好
我使用图书馆wix/react-native-notifications
看起来我的 android 做错了什么(ios 工作正常)。为了我:
- registerRemoteNotificationsRegistered
- registerRemoteNotificationsRegistered
- registerNotificationOpened
- 获取初始通知
工作好。
但:
- registerNotificationReceivedForeground
- registerNotificationReceivedBackground
从未触发过。
我想我在 AndroidManifest.xml 中放了一些错误(我尝试了不同的变体,但它仍然不起作用)。
或使用时出现问题
- 反应原生通知
- 反应本机推送通知
同时。
请也许有人有一些想法?
我用:
- “反应原生通知”:“^3.2.2”,
- "react-native-pusher-push-notifications": "^2.4.0",
- “反应”:“16.9.0”,
- “反应原生”:“0.61.5”,
我认为可能是错误的 AndroidManifest.xml 的一部分:
<service
android:name=".java.MyFirebaseMessagingService"
android:exported="false"
>
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>