I have an APP that uses location. Location is achieved in a special service that stores locations changes to a DB.
When my app goes to the background I destroy the service and the service has:
When it goes foreground the service is started.
Anyway, when my APP goes to background, the service is destroyed (I can see in the logs) but Android keeps the location PIN on.
Is there another whay to stop the Location Manager from using location?
Thanks
FBP
When my app goes to the background I destroy the service and the service has:
B4X:
Sub Service_Destroy
lm.stopGPSListening
lm.stopMobileListening
End Sub
When it goes foreground the service is started.
Anyway, when my APP goes to background, the service is destroyed (I can see in the logs) but Android keeps the location PIN on.
Is there another whay to stop the Location Manager from using location?
Thanks
FBP