Files
AndroidJetpack/Kuroba-Experimental/Kuroba/core-spannable/build.gradle
T
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

46 lines
1.1 KiB
Groovy

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
apply plugin: 'com.google.devtools.ksp'
android {
namespace "com.github.k1rakishou.chan"
compileSdk 34
defaultConfig {
minSdkVersion 21
}
buildTypes {
release {
minifyEnabled true
}
debug {
minifyEnabled false
}
android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
}
}
dependencies {
implementation project(':core-common')
implementation project(':core-settings')
implementation project(':core-themes')
implementation "org.jetbrains.kotlin:kotlin-stdlib:${versions.kotlin_version}"
implementation "com.google.code.gson:gson:${versions.gson}"
implementation 'androidx.annotation:annotation:1.2.0'
testImplementation "junit:junit:${versions.junit}"
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}