k9-mail/core/common/build.gradle.kts

32 lines
701 B
Text
Raw Normal View History

2025-11-22 13:56:56 +01:00
plugins {
id(ThunderbirdPlugins.Library.kmp)
}
android {
namespace = "net.thunderbird.core.common"
}
kotlin {
sourceSets {
commonMain.dependencies {
implementation(projects.core.logging.implLegacy)
implementation(projects.core.logging.api)
implementation(projects.core.logging.implFile)
}
commonTest.dependencies {
implementation(projects.core.testing)
}
jvmMain.dependencies {
implementation(libs.androidx.annotation)
}
}
compilerOptions {
freeCompilerArgs.addAll(
listOf(
"-Xexpect-actual-classes",
),
)
}
}