有人在Moto E上遇到通知问题吗? 目前正在开发涉及Cordova Local Notification插件的项目,该工作仅适用于4.3(alcatel one touch,nokia x2)5.0(nexus 7)4.4(nokia x2 cyanogenmod),但在Moto E上没什么(股票4.4) 建立最新的Android SDK,cordova(5.1.1),离子(1.6.4)
检查权限:
plugin.notification.local.hasPermission(function (granted) {
console.log('Permission has been granted: ' + granted);
});
控制台没有错误(回答'真'')
使用以下方式安排通知:
var alarmTime = new Date().getMinutes();
$cordovaLocalNotification.schedule({
id: "1",
text: "xxx",
title: "www",
at: alarmTime
});
使用以下方法检查通知状态(通知延迟):
$cordovaLocalNotification.isScheduled("1").then(function(isScheduled) {
alert("Notification status: " + isScheduled);
});
还有一切都好......