Files
coco 7a4fb0e6ae a
2026-07-03 16:23:31 +08:00

30 lines
709 B
Kotlin

plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
android {
compileSdk = Version.compileSdk
defaultConfig {
minSdk = Version.minSdk
targetSdk = Version.targetSdk
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
compileOptions {
targetCompatibility(JavaVersion.VERSION_11)
sourceCompatibility(JavaVersion.VERSION_11)
}
}
dependencies {
implementation(Deps.recyclerview)
implementation(Deps.paging)
implementation(Deps.pagingKtx)
testImplementation(Deps.testJunit)
androidTestImplementation(Deps.androidTestJunit)
androidTestImplementation(Deps.androidTestEspresso)
}