Thats how the requestLocationUpdates looks like(the way I use it):
requestLocationUpdates(String provider, long minTime, float minDistance, LocationListener listener)
My question is if the logical connection between the minTime and the minDistance is OR or AND.
If the minTime has passed will it wait for the minDistance or not?
OR or AND
The documentation on
requestLocationUpdate()says:So both parameters must be satisfied before you’ll receive an update if you specify non-0 values.