I am trying to retrieve the # of satellites used in the GPS fix. I have implemented two different methods, as shown below:
package ti.utils;
import android.
I got it working by having following in code.
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new LocationUpdateHandler());
int nSatellites = location.getExtras().getInt("satellites", -1);
nSatellites
was found to be >0 once i started getting fix(onLocationChanged
callbacks) .