cordova-plugin-local-notifications icon indicating copy to clipboard operation
cordova-plugin-local-notifications copied to clipboard

Scheduled notification not firing once app has been closed - Android

Open sarahbock opened this issue 5 years ago • 0 comments

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

  • Plugin version: 0.9.3
  • Platform: Android
  • OS version: 8.1.0
  • Device manufacturer / model: OPPO AX5
  • Cordova version (cordova -v): 9.0.0
  • Cordova platform version (cordova platform ls): android 8.1.0
  • Plugin config
  • Ionic Version (if using Ionic)

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

  • ios XCode logs
  • Android: $ adb logcat

sarahbock avatar Aug 04 '20 01:08 sarahbock