从后端触发推送通知时,如果我的Android应用在后台运行,或者前景通知运行正常,但是如果我从最近的应用中删除了该应用,则我不会收到通知。
我尝试了链接下方的react-native-push-notification。
https://www.npmjs.com/package/react-native-push-notification
这是我的代码
PushNotification.configure({
onRegister: function (token) {
console.log("hello "+token.token)
},
onNotification: function (notification) {
console.log('NOTIFICATION:', notification);
},
senderID: "i putted my sender id here",
// IOS ONLY (optional): default: all - Permissions to register.
permissions: {
alert: true,
badge: true,
sound: true
},
// Should the initial notification be popped automatically
// default: true
popInitialNotification: true,
requestPermissions: true,
});
}
我希望,如果我从最近删除了我的应用程序,那么它还必须像往常一样显示通知,它必须可以工作,但是不能工作。