refactor: integrate Koin for dependency injection across platforms

This commit is contained in:
2026-06-09 17:22:43 +02:00
parent 931d5e9d72
commit 17da9f6757
14 changed files with 71 additions and 15 deletions
+1 -1
View File
@@ -14,8 +14,8 @@ kotlin {
dependencies {
implementation(projects.shared)
// Compose
implementation(libs.androidx.activity.compose)
implementation(libs.compose.uiToolingPreview)
debugImplementation(libs.compose.uiTooling)
}
+1
View File
@@ -2,6 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:name=".GwenedegApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@@ -0,0 +1,5 @@
package fr.ajaury.gwenedeg
import android.app.Application
class GwenedegApp : Application()