I got GPS_Location:
double lo=gps_loc.getLongitude(); double la=gps_loc.getLatitude();
I got Horizontal_Accuracy:
int horiAcc=(int)(gps_loc.getAccuracy());
I got HDOP:
int hd= (int) (horiAcc/5);
But I canβt get the number of satellites.
How can I get the number of satellites that were used in my GPS location?
source share