diff options
| author | ilotterytea <iltsu@alright.party> | 2024-10-08 01:54:47 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2024-10-08 01:54:47 +0500 |
| commit | c5ee68a647871ca7bc8044a96759e7c00f9188db (patch) | |
| tree | 5101f68c9d33ed0c2c7ebb00178fe9d4537d9fe0 /android/AndroidManifest.xml | |
| parent | 8e046a873ae0df5d7215103f69bcd0fcae5a2a00 (diff) | |
feat: Android support (again)
Diffstat (limited to 'android/AndroidManifest.xml')
| -rw-r--r-- | android/AndroidManifest.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml new file mode 100644 index 0000000..352f4c1 --- /dev/null +++ b/android/AndroidManifest.xml @@ -0,0 +1,29 @@ +<?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-feature android:glEsVersion="0x00020000" android:required="true" /> + + <application + android:allowBackup="true" + android:fullBackupContent="true" + android:icon="@drawable/ic_launcher" + android:isGame="true" + android:appCategory="game" + android:label="@string/app_name" + android:theme="@style/AppTheme" + tools:ignore="UnusedAttribute"> + <activity + android:name="kz.ilotterytea.maxon.AndroidLauncher" + android:label="@string/app_name" + android:screenOrientation="portrait" + android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout" + android:exported="true"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.LAUNCHER" /> + </intent-filter> + </activity> + </application> + +</manifest> |
