Reputation: 1493
I'm developing an app that have to execute some actions when the user approach a gps location (latitude, longitude and a radius). Is it possible to do it without have the app running? What is the best way?
Thank you
Alessandro
Upvotes: 1
Views: 543
Reputation: 82563
On any device with a decently new version of the Google Play services, you can utilize the Geofencing API.
This will alert your app when the user is within a radius of a particular location, and your app does not need to be running all the time.
Upvotes: 3