]>
Git — Sourcephile - tmp/julm/android.git/blob - 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">
5 <uses-permission android:
name=
"android.permission.INTERNET" />
6 <uses-permission android:
name=
"android.permission.ACCESS_NETWORK_STATE" />
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"
20 android:
name=
".DebugActivity"
21 android:
exported=
"false"
22 android:
theme=
"@style/Theme.JavaEmptyProject" />
24 android:
name=
".SwitchActivity"
25 android:
exported=
"false"
26 android:
theme=
"@style/Theme.JavaEmptyProject" />
28 android:
name=
".MainActivity"
29 android:
exported=
"true"
30 android:
label=
"@string/app_name"
31 android:
theme=
"@style/Theme.JavaEmptyProject">
33 <action android:
name=
"android.intent.action.MAIN" />
35 <category android:
name=
"android.intent.category.LAUNCHER" />