React Native Android 远程推送通知未显示

React Native Android remote push notifications not showing up

我正在使用 react-native-push-notification 包和 PubNub 推送通知来处理远程通知。这一切都适用于 iOS 很好,我正在从 android 上的 onNotification 方法获取通知数据,但屏幕上没有像我期望的那样弹出实际通知.我是否缺少 FCM 端的配置或者我需要请求特定的权限检查以确保可以在 android 设备上显示远程通知?

我已经按照 react-native-push-notification 包裹上的手动步骤进行了 T 和三重检查,我没有遗漏任何东西

我传递给 Pubnub 的这个 GCM 位是这个

"pn_gcm": {
    "data": {
      "title_for_mobile": "George Washingtons's phone has moved outside of the group",
      "summary_for_mobile": [ "George Washingtons's phone has moved outside of the group" ],
      "data": {
        "action": "radiusTrigger",
        "userId": 6,
        "groupId": 8
      }
    }
  }

并且 title_for_mobile 没有将它作为推送通知发送到我的 phone 所以我不得不将其更改为

"pn_gcm": {
    "data": {
      "message": "George Washingtons's phone has moved outside of the group",
      "data": {
        "action": "radiusTrigger",
        "userId": 6,
        "groupId": 8
      }
    }
  }

现在它在 android

上显示通知