Update gradle scripts and dependencies (#538)

* Update gradle wrapper
* Clean up some unnecessary/unused things in android gradles
* Update some dependencies
This commit is contained in:
TacoTheDank
2020-01-01 19:03:53 -05:00
committed by Alinson Xavier
parent 6f24e42d1f
commit cbee09c38f
9 changed files with 123 additions and 131 deletions

View File

@@ -6,17 +6,6 @@ android {
defaultConfig {
minSdkVersion MIN_SDK_VERSION as Integer
targetSdkVersion TARGET_SDK_VERSION as Integer
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
@@ -28,7 +17,6 @@ android {
checkReleaseBuilds false
abortOnError false
}
}
dependencies {
@@ -38,14 +26,4 @@ dependencies {
implementation "org.apache.commons:commons-lang3:3.5"
annotationProcessor "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
androidTestAnnotationProcessor "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
androidTestImplementation "com.google.dagger:dagger:$DAGGER_VERSION"
testAnnotationProcessor "com.google.dagger:dagger-compiler:$DAGGER_VERSION"
testImplementation "junit:junit:4.12"
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
}