AleCat83
AleCat83

Reputation: 1493

launch app activity when reach gps location in android

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

Answers (1)

Raghav Sood
Raghav Sood

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

Related Questions