我正在尝试将 OneSignal 初始化为 PhoneGap 应用程序。
我尝试了很多方法。但它总是给出以下错误,
未捕获的类型错误:无法读取未定义的属性“OneSignal”,来源:file:///android_asset/www/js/app.js 错误。
这是我的 app.js 文件
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
oneSignal();
checkConnection();}
function oneSignal(){
console.log("It is calling");
var notificationOpenedCallback = function(jsonData) {
console.log('didReceiveRemoteNotificationCallBack: ' + JSON.stringify(jsonData));
};
window.plugins.OneSignal.init("my app id",
{googleProjectNumber: "my project number"},
notificationOpenedCallback);
// Show an alert box if a notification comes in when the user is in your app.
window.plugins.OneSignal.enableInAppAlertNotification(true);}
请有人帮我将 OneSignal 初始化为我的 PhoneGap 应用程序。