From b8f9e2f30964b946ebd962ab9642ef041d17bc6f Mon Sep 17 00:00:00 2001 From: Alinson Xavier Date: Sat, 16 Nov 2019 21:56:49 -0600 Subject: [PATCH] Update to Dagger 2.25.2 --- android/gradle.properties | 2 +- android/uhabits-core/build.gradle | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/android/gradle.properties b/android/gradle.properties index a6af03a8e..b872bc7c0 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -5,7 +5,7 @@ MIN_SDK_VERSION = 19 TARGET_SDK_VERSION = 27 COMPILE_SDK_VERSION = 27 -DAGGER_VERSION = 2.9 +DAGGER_VERSION = 2.25.2 KOTLIN_VERSION = 1.3.50 SUPPORT_LIBRARY_VERSION = 27.1.1 AUTO_FACTORY_VERSION = 1.0-beta6 diff --git a/android/uhabits-core/build.gradle b/android/uhabits-core/build.gradle index ef1c96e59..e889513bd 100644 --- a/android/uhabits-core/build.gradle +++ b/android/uhabits-core/build.gradle @@ -3,13 +3,13 @@ apply plugin: 'java' apply plugin: 'jacoco' dependencies { - annotationProcessor "com.google.auto.factory:auto-factory:${AUTO_FACTORY_VERSION}" - annotationProcessor 'com.google.dagger:dagger:2.11-rc2' + annotationProcessor "com.google.auto.factory:auto-factory:$AUTO_FACTORY_VERSION" + annotationProcessor "com.google.dagger:dagger:$DAGGER_VERSION" compileOnly 'javax.annotation:jsr250-api:1.0' compileOnly 'org.jetbrains:annotations-java5:15.0' - compileOnly "com.google.auto.factory:auto-factory:${AUTO_FACTORY_VERSION}" - compileOnly 'com.google.dagger:dagger:2.11-rc2' + compileOnly "com.google.auto.factory:auto-factory:$AUTO_FACTORY_VERSION" + compileOnly "com.google.dagger:dagger:$DAGGER_VERSION" implementation "com.android.support:support-annotations:$SUPPORT_LIBRARY_VERSION" implementation 'com.google.code.findbugs:jsr305:3.0.2'