Android max limit for geofences?

joschplusa picture joschplusa · Sep 20, 2013 · Viewed 8.1k times · Source

I'm starting with the geo fencing API of google play services. I think I understood the general concept but I couldn't find out if there's a limit for geofences. I give my list of geofences to the the location client and he handles the rest. But how many geofences can I pass to the location client? As many as I want?

Answer

tyczj picture tyczj · Sep 20, 2013

You get 100 geofences per app per device

You can have multiple active geofences, with a limit of 100 per device user. For each geofence, you can ask Location Services to send you entrance and exit events, or you can specify a duration within the geofence area to wait, or dwell, before triggering an event. You can limit the duration of any geofence by specifying an expiration duration in milliseconds. After the geofence expires, Location Services automatically removes it.

https://developer.android.com/training/location/geofencing.html

they tell you in the google IO session called Beyond the Blue Dot: New Features in Android Location