/
m0rin
/
RandomCoffee_project_for_SL
Обзор
Документация
Войти
/
m0rin
/
RandomCoffee_project_for_SL
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
androidApp/src/main/AndroidManifest.xml
24 строки
866 B
Morin
feat(di): add Koin dependency injection with KoinComponent
31 май 2026, 18:54
31 май 2026, 18:54
7eb2e5f
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"> <uses-permission android:name="android.permission.INTERNET" /> <application android:name=".MainApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@android:style/Theme.Material.Light.NoActionBar"> <activity android:exported="true" android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>