You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When I start the watch code on iOS everything works correctly but on Android When it runs to start in the background the location icon appears and then disappears
this.plt.pause.subscribe( () => {// background
// dont work on android
this.bgGeoS.enable_bg_track()
});
this.plt.resume.subscribe(() => {// foreground
this.bgGeoS.disable_bg_track()
});
But if before sending the app to the background it already has the watch code initialized. works correctly
Maybe the way I want to abort this functionality is not correct. I tried to find out if there was a way to detect more before the platform goes into the background
To Reproduce
Just create a project and initialize the watch code just when it goes to the background
Expected behavior
initializing the watch code just when the platform goes to the background should work on android
Smartphone (please complete the following information):
Describe the bug
When I start the watch code on iOS everything works correctly but on Android When it runs to start in the background the location icon appears and then disappears
But if before sending the app to the background it already has the watch code initialized. works correctly
Maybe the way I want to abort this functionality is not correct. I tried to find out if there was a way to detect more before the platform goes into the background
To Reproduce
Just create a project and initialize the watch code just when it goes to the background
Expected behavior
initializing the watch code just when the platform goes to the background should work on android
Smartphone (please complete the following information):
Additional context
At the moment my solution is to activate tracking when I start the application. If anyone has any suggestions I would like to hear them.
The text was updated successfully, but these errors were encountered: