45 lines
1.0 KiB
Groovy
45 lines
1.0 KiB
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'kotlin-kapt'
|
|
id 'kotlin-parcelize'
|
|
id 'com.google.devtools.ksp'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
versionCode rootProject.ext.versionCode
|
|
versionName rootProject.ext.versionName
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
dataBinding true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
consumerProguardFiles 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '1.8'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
kapt "com.google.auto.service:auto-service:${autoServiceVersion}"
|
|
|
|
implementation(project(path: ":module_common")) {
|
|
exclude group: 'androidx.swiperefreshlayout'
|
|
}
|
|
} |