Files
QieKan-3.0/modules/audiobookshelf-client/build.gradle.kts
T
yusheng d2d2ecd3bc
Auto Release / build (app, release) (push) Canceled after 0s
Auto Release / create_release (push) Canceled after 0s
Auto Release / prepare (push) Canceled after 0s
CodeQL / Analyze (java-kotlin) (java-kotlin) (push) Canceled after 0s
Deploy Docs / build (push) Canceled after 0s
Deploy Docs / Deploy (push) Canceled after 0s
feat: release QieKan 3.26.15
2026-08-08 12:22:26 +08:00

41 lines
723 B
Kotlin

plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.serialization)
}
android {
compileSdk = 37
namespace = "io.legado.audiobookshelf.client"
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}
defaultConfig {
minSdk = 26
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
lint {
checkDependencies = true
targetSdk = 37
}
testOptions {
targetSdk = 37
}
}
dependencies {
api(libs.okhttp)
implementation(libs.kotlinx.serialization.json)
testImplementation(libs.junit)
}