PushNotification.configure({
onNotification: function(notification) {
console.log( 'NOTIFICATION:', notification);
},
})
当我单击打开应用程序但 onNotification从未调用过时,
从服务器收到来自服务器的通知。
我把它放在 componentDidMount()和构造函数在App.js 中,但是从来没有调用过。 帮助。答案 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>