]> Git — Sourcephile - tmp/julm/android.git/blob - android/app/src/main/AndroidManifest.xml
learnability(haskell): clarify the build
[tmp/julm/android.git] / android / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools">
4
5 <uses-permission android:name="android.permission.INTERNET" />
6 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
7
8 <application
9 android:name=".YourApplication"
10 android:allowBackup="true"
11 android:dataExtractionRules="@xml/data_extraction_rules"
12 android:fullBackupContent="@xml/backup_rules"
13 android:icon="@mipmap/ic_launcher"
14 android:label="@string/app_name"
15 android:roundIcon="@mipmap/ic_launcher_round"
16 android:supportsRtl="true"
17 android:theme="@style/Theme.JavaEmptyProject"
18 tools:targetApi="31">
19 <activity
20 android:name=".DebugActivity"
21 android:exported="false"
22 android:theme="@style/Theme.JavaEmptyProject" />
23 <activity
24 android:name=".SwitchActivity"
25 android:exported="false"
26 android:theme="@style/Theme.JavaEmptyProject" />
27 <activity
28 android:name=".MainActivity"
29 android:exported="true"
30 android:label="@string/app_name"
31 android:theme="@style/Theme.JavaEmptyProject">
32 <intent-filter>
33 <action android:name="android.intent.action.MAIN" />
34
35 <category android:name="android.intent.category.LAUNCHER" />
36 </intent-filter>
37 </activity>
38 </application>
39
40 </manifest>