0

I have implement below solution for my cordova applications from the below link and it works on android but not not working on ios platform The onPause and onResume events are not working on ios.

how to check app running in foreground or background in ionic/cordova/phonegap

1 Answers1

0

I believe the API has been updated to pause and resume

 document.addEventListener("pause", onPause, false);
 document.addEventListener("resume", onResume, false);

Hard to tell without your code

Check the doc here : https://cordova.apache.org/docs/en/9.x/cordova/events/events.html#page-toc-source

Eric
  • 9,870
  • 14
  • 66
  • 102