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

Android onNotification never called in react-native-push-notification

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

收到来自服务器的通知 当我点击它时应用程序已打开但 onNotification 从未被调用。 我把它放在 componentDidMount() 和 App.js 的构造函数中,但它从未被调用过.. 求助..

您是否在 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