Files
m-stecmd/core/common/build.gradle.kts
阿猫 e96e92d7ab *
2026-09-03 12:38:16 +08:00

31 lines
660 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// core:common 通用基础层AppResult / UiState / 日志门面
// 代码保持纯 Kotlin不引 Android API便于 JVM 单测与被所有 core 模块复用
plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
}
android {
namespace = "com.stec.cmd.core.common"
compileSdk = 34
defaultConfig {
minSdk = 26
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
api(libs.kotlinx.coroutines.core)
testImplementation(libs.junit)
}