views:

67

answers:

1

Which permission needs my application to get access to the location of the user on Android?

+3  A: 

you need:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

outside the application tag in your AndroidManifest.xml

Sephy
FINE_LOCATION will get you GPSor android.permission.ACCESS_COARSE_LOCATION which i think will return GPS coords if available. if not it will use wifi or cell-idhttp://developer.android.com/reference/android/Manifest.permission.html#ACCESS_COARSE_LOCATION
dweebo

related questions