20 lines
419 B
Kotlin
20 lines
419 B
Kotlin
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)
|
|
}
|
|
}
|
|
} |