diff options
| author | Claudomator Agent <agent@claudomator> | 2026-03-13 19:54:43 +0000 |
|---|---|---|
| committer | Claudomator Agent <agent@claudomator> | 2026-03-13 19:54:43 +0000 |
| commit | 72ab76835dec92ea30c2d26009e3576aa8f1dbc7 (patch) | |
| tree | d696d00ca523a2ae3d63fd575058c09e4ec5cb91 /android-app/app/src/main/AndroidManifest.xml | |
| parent | 0b3fc43df0f522a9d2b308c79b35870e3afb08db (diff) | |
Implement GPS navigation with position, SOG, and COG
Diffstat (limited to 'android-app/app/src/main/AndroidManifest.xml')
| -rw-r--r-- | android-app/app/src/main/AndroidManifest.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/android-app/app/src/main/AndroidManifest.xml b/android-app/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..2fce535 --- /dev/null +++ b/android-app/app/src/main/AndroidManifest.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-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.INTERNET" /> + + <application + android:allowBackup="true" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/ic_launcher_round" + android:supportsRtl="true" + android:theme="@style/Theme.AndroidApp"> + <activity + android:name=".MainActivity" + android:exported="true"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> +</manifest>
\ No newline at end of file |
