Open GoogleCodeExporter opened 9 years ago
Well if you see the following line in getLastBestLocation(), it differs between
the two:
if (locationListener != null && (bestTime > minTime || bestAccuracy > minDistance))
The correct line in LegacyLastLocationFinder should be:
if (locationListener != null && (bestTime < minTime || bestAccuracy > minDistance))
Pretty grave error
Original comment by nil...@gmail.com
on 18 Jun 2014 at 8:07
Original issue reported on code.google.com by
lishali1...@gmail.com
on 6 Sep 2011 at 8:40