meumobi / infomobi-v2

http://meumobi.github.io/infomobi
2 stars 6 forks source link

Run App in background #274

Open vdias38 opened 7 years ago

vdias38 commented 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.