I used the cordova-plugin-local-notifications and everything worked fine to receive the notification but I want to show a screen of the alarm! I tried to show an alert when the notification is triggered but it’s opened only inside the app :
this.localNotif.on('trigger').subscribe(res => {
let msg = res.data ? res.data.mydata : '';
this.showAlert(res.title, res.text, msg);
});
Can anyone help me to display the alarm interface over any app running?