Issue
I want to perform some actions when my app goes to the background—e.g., when pressing the home button. (I am testing on an Android device.)
I tried the following in my app.component.ts
:
this.platform.ready().then(() => {
this.platform.pause.subscribe(async () => {
alert("Pause event detected");
//Do stuff here
});
this.platform.resume.subscribe(async () => {
alert("Resume event detected");
//Do stuff here
});
…
I also tried:
App.getState().then((result) => {
alert("state active?" + result.isActive);
});
No listener is triggered when the app goes to background (e.g., by pressing the home button). But when I start the app again, all events are triggered (in this case, the alerts), including the platform.pause
event.
I am using Ionic 9 and Capacitor.
Am I misunderstanding something? What could be the problem?
Solution
Ok... things work. The problem was, that I had both variants in code active.
Answered By - Maik Kwi
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.