26 行
619 B
Plaintext
26 行
619 B
Plaintext
|
|
plugins {
|
||
|
|
alias(libs.plugins.android.library)
|
||
|
|
id("org.jetbrains.kotlin.android") version "2.3.10"
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "com.xuqm.sdk.update"
|
||
|
|
compileSdk = libs.versions.compileSdk.get().toInt()
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk = libs.versions.minSdk.get().toInt()
|
||
|
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
|
}
|
||
|
|
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
||
|
|
targetCompatibility = JavaVersion.VERSION_11
|
||
|
|
}
|
||
|
|
kotlinOptions { jvmTarget = "11" }
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
api(project(":sdk-core"))
|
||
|
|
implementation(libs.kotlinx.coroutines.android)
|
||
|
|
}
|