Android onNotification从未在react-native-push-notification中调用

时间:2018-07-09 05:05:59

标签: react-native push-notification react-native-android jsx react-native-push-notification

 PushNotification.configure({
    onNotification: function(notification) {
      console.log( 'NOTIFICATION:', notification);
},
}) 

当我单击打开应用程序但 onNotification从未调用过时,

从服务器收到来自服务器的通知 我把它放在 componentDidMount()和构造函数在App.js 中,但是从来没有调用过。 帮助。

1 个答案:

答案 0 :(得分:1)

您是否已将所需的代码添加到AndroidManifest.xml中?

例如

<!--more stuff above--> <service android:name="com.dieam.reactnativepushnotification.modules.RNPushNotificationListenerService" android:exported="false" > <intent-filter> <action android:name="com.google.android.c2dm.intent.RECEIVE" /> </intent-filter> </service>

来源:https://github.com/zo0r/react-native-push-notification