30 lines
709 B
Kotlin
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)
|
|
} |