Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

android location access

<!-- Always include this permission -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

<!-- Include only if your app benefits from precise location access. -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<!-- Required only when requesting background location access on
     Android 10 (API level 29) and higher. -->
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
 
PREVIOUS NEXT
Tagged: #android #location #access
ADD COMMENT
Topic
Name
8+6 =