21 lines
402 B
Kotlin
21 lines
402 B
Kotlin
plugins {
|
|
id("gwenedeg.kmp.library")
|
|
}
|
|
|
|
kotlin {
|
|
androidLibrary {
|
|
namespace = "bzh.ajaury.chombev.core.logging"
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
// Logging
|
|
implementation(libs.kermit)
|
|
|
|
// DI
|
|
implementation(project.dependencies.platform(libs.koin.bom))
|
|
implementation(libs.koin.core)
|
|
}
|
|
}
|
|
}
|