diff options
| author | ilotterytea <iltsu@alright.party> | 2022-10-06 01:30:35 +0600 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2022-10-06 01:30:35 +0600 |
| commit | 54594c18eebb0f6a2d758cb920f71ff007eef436 (patch) | |
| tree | 5c367ed668274dce37716bb1d6d283aa4dbf7887 /android/AndroidManifest.xml | |
| parent | 3c1b7a4b4a85a18deea201f4cd5921fc0fdc649a (diff) | |
наконец-то ебучая поддержка андроидов наступила
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..e4a6825 --- /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" + package="com.mygdx.game"> + + <uses-feature android:glEsVersion="0x00020000" android:required="true" /> + + <application + android:allowBackup="true" + android:fullBackupContent="true" + android:icon="@drawable/maxon" + android:isGame="true" + android:appCategory="game" + android:label="@string/app_name" + tools:ignore="UnusedAttribute"> + <activity + android:name="com.ilotterytea.maxoning.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> |
