I haven't found much documentation on this, and it doesn't really seem very easy or straightforward to test. I'm building a LocationRequest
for use in a FusedLocationProvider
. Here is a link to the docs for convenience:
http://developer.android.com/reference/com/google/android/gms/location/LocationRequest.html
My priority
is set to PRIORITY_HIGH_ACCURACY
. I understand that fastestInterval
allows my app to receive location updates that were requested by other apps. For our use we want locations that are accurate at the expense of battery life.
If another app requests locations at a lower priority but a faster interval, is there a risk that I'll lose out on my location updates because my fastestInterval
is already being met with more frequent lower-priority location updates?