react-native-push-notification(PushNotification)的配置方法永远不会调用任何人知道我错过了什么? 我正在使用Firebase为推送通知配置云消息传递。
PushNotification.configure({
onRegister: function (token) {
console.log('TOKEN:', token);
},
onNotification: function (notification) {
console.log("NOTIFICATION:", notification);
},
senderId:"12323123232",
permissions: {
alert: true,
badge: true,
sound: true
},
popInitialNotification: true,
requestPermissions: true
});
它没有注册。