0
я не следовал этому: localnotification android phonegap for cordova 2.x+ получая ничего в устройстве: вот некоторые результаты моих console.log:PhoneGap Android localnotification плагин дисплей ничего
05-07 21:04:20.218: E/dalvikvm(21039): threadid=5: stuck on threadid=12, giving up
05-07 21:04:20.218: D/dalvikvm(21039): threadid=5: sending two SIGSTKFLTs to threadid=12 (tid=21062) to cause debuggerd dump
05-07 21:04:22.218: D/dalvikvm(21039): Sent, pausing to let debuggerd run
05-07 21:04:22.867: A/libc(21039): Fatal signal 16 (SIGSTKFLT) at 0x0000522f (code=-6)
Здесь вы код HTML страницы и каждая вещь следуют из вышеупомянутая ссылка
<script type="text/javascript">
document.addEventListener("deviceready",appReady, false);
function appReady() {
window.plugins = {
LocalNotificationPlugin: cordova.require('cordova/plugin/localNotification')
};
console.log("Device ready");
alert("");
var now = new Date();
now.setSeconds(now.getSeconds() + 90);
window.plugins.LocalNotificationPlugin.add({
date :now,
message : "Phonegap - Local Notification\r\nSubtitle comes after linebreak",
ticker : "This is a sample ticker text",
repeatDaily : false,
id : 4
});
}
</script
Можете ли вы показать нам свои коды? – Raptor
упомянул код – nida
См. Http://stackoverflow.com/questions/17198707/local-notification-repeated-every-day-in-phonegap-android. Дайте мне знать, если это не поможет – bala