Android: Geofence Expiration
Is there any way to trigger the Geofence expiration(e.g in a callback method)? I would like to recalculate the path on my gps-tracker app only if a geofence has not been entered in
Solution 1:
You can just keep track of the entered events yourself. In each callback for a geofence tripped event you are given a Geofence Id and then you can perform your logic and remove/add the geofence(s) with the new expiration if needed.
Post a Comment for "Android: Geofence Expiration"