I am wondering if the Location.distanceTo method will use the accuracy field of the Location object when approximates the location, or do I have to add by my own the errors to these fields. The usage is to compare the distance against a proximity value.
Float dist=currentLocation.distanceTo(loc2);
Would this be
if (dist<100meters)
or
if (dist+currentLocation.getAccuracy()+loc2.getAccuracy()<100meters)