UNPKG

expo-location

Version:

Allows reading geolocation information from the device. Your app can poll for the current location or subscribe to location update events.

15 lines (12 loc) 563 B
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="expo.modules.location"> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> <application> <service android:name=".services.LocationTaskService" android:exported="false" /> </application> </manifest>