/
kackbip
/
mood_control
Обзор
Документация
Войти
/
kackbip
/
mood_control
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
ComposeApp/src/androidMain/AndroidManifest.xml
26 строк
856 B
Vladimir Ryashentsev
Возможность планировать уведомления на андриоде
24 ноя 2025, 13:05
24 ноя 2025, 13:05
0a2fe30
Код
Авторство
О чём код?
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <application android:name=".App" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="Настроение" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true"> <activity android:name=".RootActivity" android:exported="true" android:launchMode="singleInstance" android:theme="@android:style/Theme.Material.NoActionBar" android:windowSoftInputMode="adjustNothing"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>