Steffaan / cordova-plugin-local-notifications

Cordova Local Notifications Plugin
Apache License 2.0
31 stars 38 forks source link

Scheduled notification not firing once app has been closed - Android #33

Open sarahbock opened 4 years ago

sarahbock commented 4 years ago

Scheduled notification is working when Android app is open or in the background but not when the app has been closed. Working as intended on iOS.

Your Environment

Expected Behavior

Schedule notification should fire after 10 seconds of device being ready, even when the app is closed immediately (before the 10 seconds is up)

Actual Behavior

Scheduled notification is working when Android app is open or in the background but not when the app has been closed. Working as intended on iOS.

Steps to Reproduce

`var app = { initialize: function() { "use strict"; document.addEventListener('deviceready', this.onDeviceReady.bind(this), false); },

onDeviceReady: function() { "use strict"; this.receivedEvent('deviceready'); },

receivedEvent: function(id) { "use strict"; $(".listening").css("display","none"); $(".received").css("display","block");

cordova.plugins.notification.local.requestPermission(function (granted) {
    var soon = new Date();
    soon.addSeconds(10);

    cordova.plugins.notification.local.schedule({
            id: 1,
            title: 'My first notification',
            text: 'Thats pretty easy...',
            //smallIcon: 'res://logo.png',
            vibrate:true,
            lockscreen:true,
            foreground: true,
            badge:1,
            trigger: {at: soon}
        });
});

} }; Date.prototype.addSeconds = function(d) {"use strict"; this.setTime(this.getTime() + (d*1000)); return this; };`

Context

Trying to get simple notification working when app is closed.

Debug logs

Include iOS / Android logs