/
username0273
/
TextAdventure
Обзор
Документация
Войти
/
username0273
/
TextAdventure
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
app/src/main/AndroidManifest.xml
34 строки
1 KB
Simon
first_commit
22 апр 2026, 23:38
22 апр 2026, 23:38
ea68305
Код
Авторство
О чём код?
<?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:resizeableActivity="false" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/Theme.TextAdventure.NoActionBar"> <activity android:name=".ui.EpilogueScreen" android:exported="false" /> <activity android:name=".ui.CharacterCreationScreen" android:exported="false" /> <activity android:name=".ui.GameScreen" android:exported="false" /> <activity android:name=".ui.TitleScreen" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>