Приветствую! делаю гибридное приложение используя intel xdk, удалось подключить камеру,но с пуш уведомлениями проблема. Подключил phonegap-push-plugin, в google apis подключил. Создал проект в google apis. Выдает ошибку(ниже)
document.addEventListener("deviceready", function(){
var push = PushNotification.init({
android: {
senderID: "xxxxxxxx"
}
});
PushNotification.hasPermission(function(data) {/* ошибка PushNotification.hasPermission is not a function*/
if (data.isEnabled) {
console.log('isEnabled');
}
});
})
Использовал инструкцию:
https://github.com/phonegap/phonegap-plugin-push/b...
Так же есть инструкция для intelxdk:
https://github.com/phonegap/phonegap-plugin-push/b... но по ней мне тоже не понятно.
В чем проблема или есть какие другие способы создания push уведомлений с intelxdk?