Haris Hasan
Haris Hasan

Reputation: 30097

How can I check whether the phone has GPS device or not?

I am trying to find piece of code which can tell me whether the android phone has GPS device or not? Most of the samples I am getting in search results are telling whether GPS is enabled or not. What I am interested in is whether Android phone has Physical GPS device or not?

Thanks

Upvotes: 7

Views: 10677

Answers (2)

Daniel
Daniel

Reputation: 1012

Starting with API level 8 (Froyo), you can use the following code:

PackageManager packageManager = mContext.getPackageManager();
boolean hasGPS = packageManager.hasSystemFeature(PackageManager.FEATURE_LOCATION_GPS);

Upvotes: 21

Damian Kołakowski
Damian Kołakowski

Reputation: 2741

public boolean hasGPSDevice(Context context)
    {
    final LocationManager mgr = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE);
    if ( mgr == null ) return false;
    final List<String> providers = mgr.getAllProviders();
    if ( providers == null ) return false;
    return providers.contains(LocationManager.GPS_PROVIDER);
    }

Upvotes: 11

Related Questions