Results 2 comments of disak74

I have the same problem in ios, when it goes to brackground it does not detect the "activate" event, but if it detects the foreground event "deactivate", can someone give...

Yes, i have the method on app.ts and my code is simple: this.backgroundMode.enable(); this.backgroundMode.on('activate').subscribe(r => { //no work console.log('ONACTIVATE'); } this.backgroundMode.on('deactivate').subscribe(r => { //yes work console.log('DEACTIVATE'); } when I put...