Update third party dependencies

pull/795/head
Alex Baker 6 years ago
parent 5082a73302
commit cc3cb49192

@ -107,10 +107,11 @@ configurations {
} }
final DAGGER_VERSION = '2.16' 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 STETHO_VERSION = '1.5.0'
final WORK_VERSION = '1.0.0-alpha10' final WORK_VERSION = '1.0.0-alpha10'
final LEAKCANARY_VERSION = '1.6.2' final LEAKCANARY_VERSION = '1.6.2'
final ROOM_VERSION = '2.1.0-alpha03'
dependencies { dependencies {
implementation project(":dav4android") implementation project(":dav4android")
@ -119,11 +120,11 @@ dependencies {
annotationProcessor "com.google.dagger:dagger-compiler:${DAGGER_VERSION}" annotationProcessor "com.google.dagger:dagger-compiler:${DAGGER_VERSION}"
implementation "com.google.dagger:dagger:${DAGGER_VERSION}" implementation "com.google.dagger:dagger:${DAGGER_VERSION}"
implementation 'androidx.room:room-rxjava2:2.1.0-alpha01' implementation "androidx.room:room-rxjava2:${ROOM_VERSION}"
annotationProcessor 'androidx.room:room-compiler:2.1.0-alpha01' annotationProcessor "androidx.room:room-compiler:${ROOM_VERSION}"
implementation "androidx.lifecycle:lifecycle-extensions:2.0.0" implementation "androidx.lifecycle:lifecycle-extensions:2.0.0"
implementation "io.reactivex.rxjava2:rxandroid:2.0.2" 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}" annotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE_VERSION}"
implementation "com.jakewharton:butterknife:${BUTTERKNIFE_VERSION}" implementation "com.jakewharton:butterknife:${BUTTERKNIFE_VERSION}"
@ -143,7 +144,7 @@ dependencies {
implementation 'com.github.rey5137:material:1.2.5' implementation 'com.github.rey5137:material:1.2.5'
implementation 'com.nononsenseapps:filepicker:4.2.1' implementation 'com.nononsenseapps:filepicker:4.2.1'
implementation 'com.google.android.material:material:1.0.0' 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.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
@ -174,21 +175,21 @@ dependencies {
// https://groups.google.com/forum/#!topic/guava-announce/Km82fZG68Sw // https://groups.google.com/forum/#!topic/guava-announce/Km82fZG68Sw
exclude group: 'com.google.guava', module: 'listenablefuture' exclude group: 'com.google.guava', module: 'listenablefuture'
} }
googleplayImplementation 'com.crashlytics.sdk.android:crashlytics:2.9.5' googleplayImplementation 'com.crashlytics.sdk.android:crashlytics:2.9.7'
googleplayImplementation "com.google.firebase:firebase-core:16.0.4" 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-location:16.0.0"
googleplayImplementation "com.google.android.gms:play-services-auth:16.0.1" googleplayImplementation "com.google.android.gms:play-services-auth:16.0.1"
googleplayImplementation "com.google.android.gms:play-services-places:16.0.0" 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.google.dagger:dagger-compiler:${DAGGER_VERSION}"
androidTestAnnotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE_VERSION}" androidTestAnnotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE_VERSION}"
androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2' androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2'
androidTestImplementation 'com.natpryce:make-it-easy:4.0.1' androidTestImplementation 'com.natpryce:make-it-easy:4.0.1'
androidTestImplementation 'androidx.test:runner:1.1.0-beta02' androidTestImplementation 'androidx.test:runner:1.1.0'
androidTestImplementation 'androidx.test:rules:1.1.0-beta02' androidTestImplementation 'androidx.test:rules:1.1.0'
androidTestImplementation 'androidx.annotation:annotation:1.0.0' androidTestImplementation 'androidx.annotation:annotation:1.0.1'
} }
apply plugin: 'com.google.gms.google-services' apply plugin: 'com.google.gms.google-services'

Loading…
Cancel
Save