/
Luckybear
/
SamsungGameDev
Обзор
Документация
Войти
/
Luckybear
/
SamsungGameDev
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
android/AndroidManifest.xml
29 строк
1 KB
Pasha883
Первый коммит, пустой проект с нужными библиотеками. (Без видео)
11 дек 2023, 10:31
11 дек 2023, 10:31
9ce3c14
Код
Авторство
О чём код?
<?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="com.maxadventure.game.AndroidLauncher" android:label="@string/app_name" android:screenOrientation="landscape" 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>