Update some dependencies

pull/538/head
TacoTheDank 6 years ago
parent f7d31b7c7d
commit bd9a96c2f1

@ -5,11 +5,11 @@ MIN_SDK_VERSION = 21
TARGET_SDK_VERSION = 29 TARGET_SDK_VERSION = 29
COMPILE_SDK_VERSION = 29 COMPILE_SDK_VERSION = 29
DAGGER_VERSION = 2.25.2 DAGGER_VERSION = 2.25.4
KOTLIN_VERSION = 1.3.50 KOTLIN_VERSION = 1.3.61
SUPPORT_LIBRARY_VERSION = 28.0.0 SUPPORT_LIBRARY_VERSION = 28.0.0
AUTO_FACTORY_VERSION = 1.0-beta6 AUTO_FACTORY_VERSION = 1.0-beta6
BUILD_TOOLS_VERSION = 3.5.2 BUILD_TOOLS_VERSION = 3.5.3
org.gradle.parallel=false org.gradle.parallel=false
org.gradle.daemon=true org.gradle.daemon=true

@ -78,7 +78,7 @@ dependencies {
implementation "com.google.dagger:dagger:$DAGGER_VERSION" implementation "com.google.dagger:dagger:$DAGGER_VERSION"
implementation "com.jakewharton:butterknife:8.6.1-SNAPSHOT" implementation "com.jakewharton:butterknife:8.6.1-SNAPSHOT"
implementation "org.apmem.tools:layouts:1.10" implementation "org.apmem.tools:layouts:1.10"
implementation "com.google.code.gson:gson:2.7" implementation "com.google.code.gson:gson:2.8.5"
implementation "com.google.code.findbugs:jsr305:3.0.2" implementation "com.google.code.findbugs:jsr305:3.0.2"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$KOTLIN_VERSION"
@ -105,15 +105,15 @@ dependencies {
// mockito-android 2+ includes net.bytebuddy, which causes tests to fail. // mockito-android 2+ includes net.bytebuddy, which causes tests to fail.
// Excluding the package net.bytebuddy on AndroidManifest.xml breaks some // Excluding the package net.bytebuddy on AndroidManifest.xml breaks some
// AndroidJUnitRunner functionality, such as running individual methods. // AndroidJUnitRunner functionality, such as running individual methods.
androidTestImplementation "org.mockito:mockito-core:1+" androidTestImplementation "org.mockito:mockito-core:1.10.19"
androidTestImplementation "com.google.dexmaker:dexmaker-mockito:+" androidTestImplementation "com.google.dexmaker:dexmaker-mockito:1.2"
testImplementation "com.google.dagger:dagger:$DAGGER_VERSION" testImplementation "com.google.dagger:dagger:$DAGGER_VERSION"
testImplementation "org.mockito:mockito-core:2.8.9" testImplementation "org.mockito:mockito-core:2.8.9"
testImplementation "org.mockito:mockito-inline:2.8.9" testImplementation "org.mockito:mockito-inline:2.8.9"
testImplementation "junit:junit:4+" testImplementation "junit:junit:4.12"
implementation('com.opencsv:opencsv:3.9') { implementation('com.opencsv:opencsv:3.10') {
exclude group: 'commons-logging', module: 'commons-logging' exclude group: 'commons-logging', module: 'commons-logging'
} }
implementation('io.socket:socket.io-client:0.8.3') { implementation('io.socket:socket.io-client:0.8.3') {

@ -6,24 +6,24 @@ dependencies {
annotationProcessor "com.google.dagger:dagger:$DAGGER_VERSION" annotationProcessor "com.google.dagger:dagger:$DAGGER_VERSION"
compileOnly 'javax.annotation:jsr250-api:1.0' compileOnly 'javax.annotation:jsr250-api:1.0'
compileOnly 'org.jetbrains:annotations-java5:15.0' compileOnly 'org.jetbrains:annotations:18.0.0'
compileOnly "com.google.auto.factory:auto-factory:$AUTO_FACTORY_VERSION" compileOnly "com.google.auto.factory:auto-factory:$AUTO_FACTORY_VERSION"
compileOnly "com.google.dagger:dagger:$DAGGER_VERSION" compileOnly "com.google.dagger:dagger:$DAGGER_VERSION"
implementation "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION" implementation "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION"
implementation 'com.google.code.findbugs:jsr305:3.0.2' implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'org.apache.commons:commons-lang3:3.5' implementation 'org.apache.commons:commons-lang3:3.5'
implementation 'com.google.code.gson:gson:2.7' implementation 'com.google.code.gson:gson:2.8.5'
testImplementation 'junit:junit:4+' testImplementation 'junit:junit:4.12'
testImplementation 'org.hamcrest:hamcrest-library:1.4-atlassian-1' testImplementation 'org.hamcrest:hamcrest-library:1.4-atlassian-1'
testImplementation 'org.apache.commons:commons-io:1.3.2' testImplementation 'org.apache.commons:commons-io:1.3.2'
testImplementation 'org.mockito:mockito-core:2.8.9' testImplementation 'org.mockito:mockito-core:2.8.9'
testImplementation 'org.json:json:20160810' testImplementation 'org.json:json:20160810'
testImplementation 'org.xerial:sqlite-jdbc:3.18.0' testImplementation 'org.xerial:sqlite-jdbc:3.18.0'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:2.3.1' testImplementation 'nl.jqno.equalsverifier:equalsverifier:2.4.8'
implementation('com.opencsv:opencsv:3.9') { implementation('com.opencsv:opencsv:3.10') {
exclude group: 'commons-logging', module: 'commons-logging' exclude group: 'commons-logging', module: 'commons-logging'
} }
} }

Loading…
Cancel
Save