19 lines
335 B
Kotlin
19 lines
335 B
Kotlin
plugins {
|
|
id(ThunderbirdPlugins.Library.kmp)
|
|
}
|
|
|
|
android {
|
|
namespace = "net.thunderbird.core.logging"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain.dependencies {
|
|
implementation(libs.kotlinx.datetime)
|
|
}
|
|
|
|
commonTest.dependencies {
|
|
implementation(projects.core.testing)
|
|
}
|
|
}
|
|
}
|