Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which permission do I have to add to the manifest to get gps sensor readings?

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

like image 730
Janusz Avatar asked Jan 19 '26 08:01

Janusz


1 Answers

you need:

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

outside the application tag in your AndroidManifest.xml

like image 68
Sephy Avatar answered Jan 20 '26 22:01

Sephy