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