Open vdias38 opened 7 years ago
http://stackoverflow.com/a/34268273 For Ionic1 and Ionic2 https://forum.ionicframework.com/t/how-to-run-app-forever-in-background-like-whatsapp/12546
cordova-plugin-background-mode
document.addEventListener('deviceready', function () { cordova.plugins.backgroundMode.enable(); cordova.plugins.backgroundMode.overrideBackButton(); }, false);
Event Listener cordova.plugins.backgroundMode.on('activate', function); cordova.plugins.backgroundMode.on('deactivate', function);
The plugin fires an event each time its status has been changed. These events are enable, disable, activate, deactivate and failure.
http://stackoverflow.com/a/34268273 For Ionic1 and Ionic2 https://forum.ionicframework.com/t/how-to-run-app-forever-in-background-like-whatsapp/12546
cordova-plugin-background-mode
Event Listener cordova.plugins.backgroundMode.on('activate', function); cordova.plugins.backgroundMode.on('deactivate', function);
The plugin fires an event each time its status has been changed. These events are enable, disable, activate, deactivate and failure.