From 3c3273455c9941d92034787cb1e3f74101277496 Mon Sep 17 00:00:00 2001 From: Konrad Pozniak Date: Mon, 14 Oct 2019 09:56:00 +0200 Subject: [PATCH] upgrade dependencies (#1535) * upgrade dependencies * enable incremental annotation processing for room --- app/build.gradle | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 38150c17a..45f98aadb 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -26,6 +26,7 @@ android { kapt { arguments { arg("room.schemaLocation", "$projectDir/schemas") + arg("room.incremental", "true") } } } @@ -107,8 +108,8 @@ dependencies { implementation "com.squareup.retrofit2:retrofit:$retrofitVersion" implementation "com.squareup.retrofit2:converter-gson:$retrofitVersion" implementation "com.squareup.retrofit2:adapter-rxjava2:$retrofitVersion" - implementation 'com.squareup.okhttp3:okhttp:4.2.0' - implementation 'com.squareup.okhttp3:logging-interceptor:4.2.0' + implementation 'com.squareup.okhttp3:okhttp:4.2.2' + implementation 'com.squareup.okhttp3:logging-interceptor:4.2.2' implementation 'org.conscrypt:conscrypt-android:2.2.1' implementation 'com.github.connyduck:sparkbutton:2.0.1' implementation 'com.github.chrisbanes:PhotoView:2.3.0' @@ -116,7 +117,7 @@ dependencies { implementation('com.theartofdev.edmodo:android-image-cropper:2.8.0') { exclude group: 'com.android.support' } - implementation 'com.evernote:android-job:1.2.6' + implementation 'com.evernote:android-job:1.4.2' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' // EmojiCompat implementation 'androidx.emoji:emoji:1.0.0' @@ -125,10 +126,10 @@ dependencies { // architecture components implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0' //room - implementation 'androidx.room:room-runtime:2.1.0' + implementation 'androidx.room:room-runtime:2.2.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' - kapt 'androidx.room:room-compiler:2.1.0' - implementation 'androidx.room:room-rxjava2:2.1.0' + kapt 'androidx.room:room-compiler:2.2.0' + implementation 'androidx.room:room-rxjava2:2.2.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "com.google.dagger:dagger:$daggerVersion" kapt "com.google.dagger:dagger-compiler:$daggerVersion" @@ -136,7 +137,7 @@ dependencies { implementation "com.google.dagger:dagger-android-support:$daggerVersion" kapt "com.google.dagger:dagger-android-processor:$daggerVersion" testImplementation 'org.robolectric:robolectric:4.3' - testImplementation 'org.mockito:mockito-inline:3.0.0' + testImplementation 'org.mockito:mockito-inline:3.1.0' testImplementation 'com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0' androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', { exclude group: 'com.android.support', module: 'support-annotations' @@ -145,7 +146,7 @@ dependencies { androidTestImplementation 'androidx.test.ext:junit:1.1.1' testImplementation 'androidx.test.ext:junit:1.1.1' debugImplementation 'im.dino:dbinspector:3.4.1@aar' - implementation 'io.reactivex.rxjava2:rxjava:2.2.12' + implementation 'io.reactivex.rxjava2:rxjava:2.2.13' implementation 'io.reactivex.rxjava2:rxandroid:2.1.1' implementation 'io.reactivex.rxjava2:rxkotlin:2.4.0' implementation 'com.uber.autodispose:autodispose-android-archcomponents:1.4.0' @@ -157,5 +158,5 @@ dependencies { implementation 'com.github.bumptech.glide:okhttp3-integration:4.10.0' //Add some useful extensions - implementation 'androidx.core:core-ktx:1.2.0-alpha04' + implementation 'androidx.core:core-ktx:1.2.0-beta01' }