我正在为基于 ionic cordova 的 android 应用程序使用 OneSignal 推送通知。当应用程序处于关闭状态时,我正在努力发送推送通知。我遵循了 oneSignal 通知站点的所有流程。是的,当应用程序处于运行状态或应用程序处于后台模式时,推送通知效果很好。我在我的项目中添加了“cordova plugin add onesignal-cordova-plugin”。还在我的 app.js 中添加了通知代码,下面是代码片段
document.addEventListener('deviceready', function () {
// Enable to debug issues.
// window.plugins.OneSignal.setLogLevel({logLevel: 4, visualLevel: 4});
var notificationOpenedCallback = function(jsonData) {
console.log('didReceiveRemoteNotificationCallBack: ' + JSON.stringify(jsonData));
};
window.plugins.OneSignal.init("3......<NOT-SHARED>",
{googleProjectNumber: "963........"},
notificationOpenedCallback);
// Show an alert box if a notification comes in when the user is in your app.
window.plugins.OneSignal.enableInAppAlertNotification(true);
}, false);
请帮我解决这个问题..谢谢你的建议