Skip to content

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

@sarahbock

Description

@sarahbock

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions