diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-03-13 23:04:02 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-03-13 23:04:12 +0000 |
| commit | 7f89b6d4d0bc4996c0f1802f81abcc23ce47c221 (patch) | |
| tree | 2725b968ef4a15dee09f51ce676b5481fba35705 /android-app/app/src/main/AndroidManifest.xml | |
| parent | 3c4e18b94db15fc0d012e12aa3be0d0557f6ad3c (diff) | |
refactor: update package name to org.terst.nav and setup CI/CD with Firebase App Distribution
Diffstat (limited to 'android-app/app/src/main/AndroidManifest.xml')
| -rw-r--r-- | android-app/app/src/main/AndroidManifest.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/android-app/app/src/main/AndroidManifest.xml b/android-app/app/src/main/AndroidManifest.xml index 2fce535..7c2c02d 100644 --- a/android-app/app/src/main/AndroidManifest.xml +++ b/android-app/app/src/main/AndroidManifest.xml @@ -2,6 +2,8 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <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" /> <uses-permission android:name="android.permission.INTERNET" /> <application @@ -11,6 +13,9 @@ android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.AndroidApp"> + <service + android:name=".LocationService" + android:foregroundServiceType="location" /> <activity android:name=".MainActivity" android:exported="true"> |
