16 lines
298 B
Kotlin
16 lines
298 B
Kotlin
plugins {
|
|
id(ThunderbirdPlugins.Library.kmp)
|
|
}
|
|
|
|
android {
|
|
namespace = "net.thunderbird.core.logging.file"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(libs.kotlinx.io.core)
|
|
implementation(projects.core.logging.api)
|
|
}
|
|
}
|
|
}
|