From cc3cb49192eb4ef7b1f67fde5d5d19320119df19 Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Mon, 10 Dec 2018 13:15:26 -0600 Subject: [PATCH] Update third party dependencies --- app/build.gradle | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index b198f7db4..ecf2399b7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -107,10 +107,11 @@ configurations { } final DAGGER_VERSION = '2.16' -final BUTTERKNIFE_VERSION = '9.0.0-rc1' +final BUTTERKNIFE_VERSION = '9.0.0-rc2' final STETHO_VERSION = '1.5.0' final WORK_VERSION = '1.0.0-alpha10' final LEAKCANARY_VERSION = '1.6.2' +final ROOM_VERSION = '2.1.0-alpha03' dependencies { implementation project(":dav4android") @@ -119,11 +120,11 @@ dependencies { annotationProcessor "com.google.dagger:dagger-compiler:${DAGGER_VERSION}" implementation "com.google.dagger:dagger:${DAGGER_VERSION}" - implementation 'androidx.room:room-rxjava2:2.1.0-alpha01' - annotationProcessor 'androidx.room:room-compiler:2.1.0-alpha01' + implementation "androidx.room:room-rxjava2:${ROOM_VERSION}" + annotationProcessor "androidx.room:room-compiler:${ROOM_VERSION}" implementation "androidx.lifecycle:lifecycle-extensions:2.0.0" implementation "io.reactivex.rxjava2:rxandroid:2.0.2" - implementation "androidx.paging:paging-runtime:2.1.0-alpha01" + implementation "androidx.paging:paging-runtime:2.1.0-rc01" annotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE_VERSION}" implementation "com.jakewharton:butterknife:${BUTTERKNIFE_VERSION}" @@ -143,7 +144,7 @@ dependencies { implementation 'com.github.rey5137:material:1.2.5' implementation 'com.nononsenseapps:filepicker:4.2.1' implementation 'com.google.android.material:material:1.0.0' - implementation 'androidx.annotation:annotation:1.0.0' + implementation 'androidx.annotation:annotation:1.0.1' implementation 'androidx.legacy:legacy-support-v13:1.0.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2' @@ -174,21 +175,21 @@ dependencies { // https://groups.google.com/forum/#!topic/guava-announce/Km82fZG68Sw exclude group: 'com.google.guava', module: 'listenablefuture' } - googleplayImplementation 'com.crashlytics.sdk.android:crashlytics:2.9.5' - googleplayImplementation "com.google.firebase:firebase-core:16.0.4" + googleplayImplementation 'com.crashlytics.sdk.android:crashlytics:2.9.7' + googleplayImplementation "com.google.firebase:firebase-core:16.0.6" googleplayImplementation "com.google.android.gms:play-services-location:16.0.0" googleplayImplementation "com.google.android.gms:play-services-auth:16.0.1" googleplayImplementation "com.google.android.gms:play-services-places:16.0.0" - amazonImplementation "com.google.android.gms:play-services-analytics:16.0.4" + amazonImplementation "com.google.android.gms:play-services-analytics:16.0.6" androidTestAnnotationProcessor "com.google.dagger:dagger-compiler:${DAGGER_VERSION}" androidTestAnnotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE_VERSION}" androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2' androidTestImplementation 'com.natpryce:make-it-easy:4.0.1' - androidTestImplementation 'androidx.test:runner:1.1.0-beta02' - androidTestImplementation 'androidx.test:rules:1.1.0-beta02' - androidTestImplementation 'androidx.annotation:annotation:1.0.0' + androidTestImplementation 'androidx.test:runner:1.1.0' + androidTestImplementation 'androidx.test:rules:1.1.0' + androidTestImplementation 'androidx.annotation:annotation:1.0.1' } apply plugin: 'com.google.gms.google-services'