k9-mail/core/preference/impl/build.gradle.kts
2025-11-22 13:56:56 +01:00

17 lines
299 B
Kotlin

plugins {
id(ThunderbirdPlugins.Library.kmp)
}
android {
namespace = "net.thunderbird.core.preference.impl"
}
kotlin {
sourceSets {
commonMain.dependencies {
api(projects.core.preference.api)
implementation(projects.core.logging.api)
}
}
}