56 lines
1.1 KiB
Groovy
56 lines
1.1 KiB
Groovy
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
id 'witness'
|
||
|
id 'kotlin-android'
|
||
|
id 'kotlin-kapt'
|
||
|
}
|
||
|
|
||
|
apply from: 'witness-verifications.gradle'
|
||
|
|
||
|
android {
|
||
|
buildToolsVersion BUILD_TOOL_VERSION
|
||
|
compileSdkVersion COMPILE_SDK
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion MINIMUM_SDK
|
||
|
targetSdkVersion TARGET_SDK
|
||
|
multiDexEnabled true
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
coreLibraryDesugaringEnabled true
|
||
|
sourceCompatibility JAVA_VERSION
|
||
|
targetCompatibility JAVA_VERSION
|
||
|
}
|
||
|
|
||
|
kotlinOptions {
|
||
|
jvmTarget = '1.8'
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
disable 'InvalidVectorPath'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencyVerification {
|
||
|
configuration = '(debug|release)RuntimeClasspath'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
lintChecks project(':lintchecks')
|
||
|
|
||
|
implementation project(':core-util')
|
||
|
|
||
|
coreLibraryDesugaring libs.android.tools.desugar
|
||
|
|
||
|
implementation libs.androidx.core.ktx
|
||
|
implementation libs.androidx.annotation
|
||
|
implementation libs.androidx.appcompat
|
||
|
|
||
|
api libs.google.play.services.wallet
|
||
|
api libs.square.okhttp3
|
||
|
api libs.rxjava3.rxjava
|
||
|
|
||
|
kapt libs.androidx.annotation
|
||
|
}
|