new: modularize data.preferences

This commit is contained in:
2026-07-03 09:39:04 +02:00
parent ddab9b642d
commit 0d7503f029
8 changed files with 36 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
id("gwenedeg.kmp.library")
}
kotlin {
androidLibrary {
namespace = "fr.ajaury.gwenedeg.preferences"
}
sourceSets {
commonMain.dependencies {
// Coroutines
implementation(libs.kotlinx.coroutinesCore)
// DI
implementation(project.dependencies.platform(libs.koin.bom))
implementation(libs.koin.core)
}
}
}