diff options
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
| -rw-r--r-- | android/app/src/main/AndroidManifest.xml | 38 |
1 files changed, 38 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..96e1085 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools"> + + <application + android:allowBackup="true" + android:dataExtractionRules="@xml/data_extraction_rules" + android:fullBackupContent="@xml/backup_rules" + android:icon="@mipmap/ic_launcher" + android:label="@string/app_name" + android:roundIcon="@mipmap/ic_launcher_round" + android:supportsRtl="true" + android:theme="@style/Theme.AppCompat.NoActionBar" + android:usesCleartextTraffic="true"> + <activity + android:name=".MainActivity" + android:label="MainActivity" + android:screenOrientation="landscape" + android:theme="@style/Theme.AppCompat.NoActionBar" + android:windowSoftInputMode="adjustPan" + android:configChanges="orientation|screenSize|keyboardHidden" + android:exported="true"> + + <!-- Fullscreen configuration --> + <meta-data + android:name="android.app.ui" + android:value="fullscreen"/> + <!-- Make MainActivity the launcher --> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + + +</application> + <uses-permission android:name="android.permission.INTERNET"/> +</manifest>
\ No newline at end of file |
