I am using GPS Tracker
class and I want to get an accurate current location.
But every time, I am getting a different location (20-meter accuracy).
GPS Tracker Class: http://eclatsol.net/GPSTracker.java
Code :
gpsTracker = new GPSTracker(getActivity());
if (gpsTracker.canGetLocation()) {
mLatitude = gpsTracker.getLatitude();
mLongitude = gpsTracker.getLongitude();
}
at that time I am doing Indoors
testing.