You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found the implemention in these two files is different, but I can't
understand why.
I think the LegacyLastLocationFinder's implemention is not correct, But the
GingerbreadLastLocationFinder's implemention is correct.
Thanks for your sharing of this project, It helps me a lot
Original issue reported on code.google.com by [email protected] on 6 Sep 2011 at 8:40
The text was updated successfully, but these errors were encountered:
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 issue reported on code.google.com by
[email protected]
on 6 Sep 2011 at 8:40The text was updated successfully, but these errors were encountered: