2020-12-03 13:19:03 -05:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'witness'
|
|
|
|
apply from: 'witness-verifications.gradle'
|
|
|
|
|
|
|
|
android {
|
|
|
|
buildToolsVersion BUILD_TOOL_VERSION
|
|
|
|
compileSdkVersion COMPILE_SDK
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion MINIMUM_SDK
|
|
|
|
targetSdkVersion TARGET_SDK
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JAVA_VERSION
|
|
|
|
targetCompatibility JAVA_VERSION
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyVerification {
|
|
|
|
configuration = '(debug|release)RuntimeClasspath'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.2.1'
|
2020-12-04 18:31:58 -05:00
|
|
|
implementation project(':core-util')
|
2020-12-03 13:19:03 -05:00
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
}
|