diff options
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
-rw-r--r-- | android/app/src/main/AndroidManifest.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..4122f36 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml | |||
@@ -0,0 +1,25 @@ | |||
1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
2 | |||
3 | <uses-permission android:name="android.permission.INTERNET" /> | ||
4 | |||
5 | <application | ||
6 | android:name=".MainApplication" | ||
7 | android:label="@string/app_name" | ||
8 | android:icon="@mipmap/ic_launcher" | ||
9 | android:roundIcon="@mipmap/ic_launcher_round" | ||
10 | android:allowBackup="false" | ||
11 | android:theme="@style/AppTheme"> | ||
12 | <activity | ||
13 | android:name=".MainActivity" | ||
14 | android:label="@string/app_name" | ||
15 | android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" | ||
16 | android:launchMode="singleTask" | ||
17 | android:windowSoftInputMode="adjustResize" | ||
18 | android:exported="true"> | ||
19 | <intent-filter> | ||
20 | <action android:name="android.intent.action.MAIN" /> | ||
21 | <category android:name="android.intent.category.LAUNCHER" /> | ||
22 | </intent-filter> | ||
23 | </activity> | ||
24 | </application> | ||
25 | </manifest> | ||