/
XPLAY
/
Timer
Обзор
Документация
Войти
/
XPLAY
/
Timer
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
app/src/main/AndroidManifest.xml
30 строк
1 KB
Глеб
Pre-release version of the application. PaceWatch has been improved, and the sound of arrow ticks and vibration have been added
14 апр 2026, 20:24
14 апр 2026, 20:24
1f8f3e8
Код
Авторство
О чём код?
<?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=".TimerApplication" android:allowBackup="true" android:dataExtractionRules="@xml/data_extraction_rules" android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/ic_app" android:label="@string/app_name" android:roundIcon="@mipmap/ic_app_round" android:supportsRtl="true" android:theme="@style/Theme.Таймер"> <activity android:name=".TimerActivity" android:screenOrientation="portrait" android:exported="true" tools:ignore="DiscouragedApi,LockedOrientationActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>