/
XPLAY
/
Homely
Обзор
Документация
Войти
/
XPLAY
/
Homely
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
app/src/main/AndroidManifest.xml
30 строк
1 KB
XPLAY
Удалена возможность перевернуть экран приложения. Начата работа над страницей 'О приложении'. Добавлено отображение текущей странице посередине верхнего toolbar
09 авг 2025, 13:36
09 авг 2025, 13:36
ac6760d
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.VIBRATE"/> <application android:name=".FLApplication" android:allowBackup="true" android:dataExtractionRules="@xml/data_extraction_rules" android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/ic_launcher" android:label="FL" android:roundIcon="@mipmap/ic_launcher" android:supportsRtl="true" android:theme="@style/Theme.FL"> <activity android:name=".FLActivity" android:exported="true" android:screenOrientation="portrait" tools:ignore="DiscouragedApi"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>