* Update gradle wrapper * Clean up some unnecessary/unused things in android gradles * Update some dependencies
30 lines
817 B
Groovy
30 lines
817 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion COMPILE_SDK_VERSION as Integer
|
|
|
|
defaultConfig {
|
|
minSdkVersion MIN_SDK_VERSION as Integer
|
|
targetSdkVersion TARGET_SDK_VERSION as Integer
|
|
}
|
|
|
|
compileOptions {
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "com.google.dagger:dagger:$DAGGER_VERSION"
|
|
implementation "com.android.support:design:$SUPPORT_LIBRARY_VERSION"
|
|
implementation "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
|
|
implementation "org.apache.commons:commons-lang3:3.5"
|
|
|
|
annotationProcessor "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
|
|
}
|