summaryrefslogtreecommitdiff
path: root/benchmark/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
committerMartial Simon <msimon_fr@hotmail.com>2025-09-15 01:07:58 +0200
commit967be9e750221ab2ab783f95df79bb26d290a45e (patch)
tree6802900a5e975f9f68b169f0f503f040056d6952 /benchmark/app/src/main/AndroidManifest.xml
add: added projectsHEADmain
Diffstat (limited to 'benchmark/app/src/main/AndroidManifest.xml')
-rw-r--r--benchmark/app/src/main/AndroidManifest.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/benchmark/app/src/main/AndroidManifest.xml b/benchmark/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..9021931
--- /dev/null
+++ b/benchmark/app/src/main/AndroidManifest.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools">
+ <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_WIFI_STATE"/>
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
+ <uses-permission android:name="android.permission.INTERNET"/>
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
+
+ <application
+ android:allowBackup="true"
+ android:dataExtractionRules="@xml/data_extraction_rules"
+ android:fullBackupContent="@xml/backup_rules"
+ android:icon="@drawable/ic_bench_icon"
+ android:label="@string/app_name"
+ android:roundIcon="@drawable/ic_bench_icon"
+ android:supportsRtl="true"
+ android:theme="@style/Theme.AppSplash"
+ android:networkSecurityConfig="@xml/network_security_config"
+ android:usesCleartextTraffic="true"
+ tools:replace="android:theme">
+ <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>
+ <activity android:name=".MapActivity"
+ android:exported="true"
+ android:theme="@style/Theme.Benchmark">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW"/>
+ </intent-filter>
+ </activity>
+ <activity android:name=".AddBenchActivity"
+ android:exported="true"
+ android:theme="@style/Theme.Benchmark">
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW"/>
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>