Which permission needs my application to get access to the location of the user on Android?
views:
67answers:
1
+3
A:
you need:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
outside the application tag in your AndroidManifest.xml
Sephy
2010-03-11 10:37:58
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
2010-03-11 15:06:13