Search code examples
androidgoogle-play-servicesgeofencingandroid-geofencelocation-client

Do Android Geofences remain active until removed/expired or only until my PendingIntent is launched


I'm about to implement a feature with geofences and before I get any serious work done, I need to know whether geofences remain active after the first transition.

The core of the feature is:

every time I'm within x meters of point P (call this Area A), I want Action B to occur.

What I need to know is

  • Do I just have to add a geofence with Geofence.NEVER_EXPIRE and rest assured that I will get a PendingIntent every time I enter the specified area regardless of elapsed time, reboots, etc

OR

  • Do I have to re-register this geofence once I exit Area A in order to get notified the next time I enter Area A?

I'm hoping that the former is the case


Solution

  • The good proposition is the first one. If you create a geofence with the flag NEVER_EXPIRE as expiration time, you won't have to re-register it when it is triggered (by going in or out). I'm 100% certain of this, I'm right now just finished coding and testing a POC about geofence.

    From the doc, the only way for a geofence to be deleted is either expiration time is reached or it is deleted by the device itself.

    Expiration time

    How long the geofence should remain active. Once the expiration time is reached, Location Services deletes the geofence. Most of the time, you should specify an expiration time, but you may want to keep permanent geofences for the user's home or place of work.

    To stop geofence monitoring, you remove the geofences themselves