diff --git a/app/build.gradle b/app/build.gradle index f65579113..23fa92546 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -93,46 +93,45 @@ dependencies { implementation "com.mikepenz:aboutlibraries:6.2.0" implementation "com.firebase:firebase-jobdispatcher:0.8.5" - //Do not update dagger https://github.com/google/dagger/issues/1245 - implementation "com.google.dagger:dagger-android-support:2.16" - kapt "com.google.dagger:dagger-compiler:2.16" - kapt "com.google.dagger:dagger-android-processor:2.16" + implementation "com.google.dagger:dagger-android-support:2.19" + kapt "com.google.dagger:dagger-compiler:2.19" + kapt "com.google.dagger:dagger-android-processor:2.19" - implementation "androidx.room:room-runtime:2.1.0-alpha02" - implementation "androidx.room:room-rxjava2:2.1.0-alpha02" - kapt "androidx.room:room-compiler:2.1.0-alpha02" + implementation "androidx.room:room-runtime:2.1.0-alpha03" + implementation "androidx.room:room-rxjava2:2.1.0-alpha03" + kapt "androidx.room:room-compiler:2.1.0-alpha03" implementation "eu.davidea:flexible-adapter:5.1.0" implementation "eu.davidea:flexible-adapter-ui:1.0.0" implementation "com.aurelhubert:ahbottomnavigation:2.2.0" - implementation 'com.ncapdevi:frag-nav:3.0.0-RC3' + implementation 'com.ncapdevi:frag-nav:3.0.0' - implementation 'com.github.pwittchen:reactivenetwork-rx2:3.0.0' + implementation 'com.github.pwittchen:reactivenetwork-rx2:3.0.1' implementation 'io.reactivex.rxjava2:rxandroid:2.1.0' - implementation "io.reactivex.rxjava2:rxjava:2.2.2" + implementation "io.reactivex.rxjava2:rxjava:2.2.4" implementation "com.jakewharton.threetenabp:threetenabp:1.1.0" implementation "com.jakewharton.timber:timber:4.7.1" implementation "at.favre.lib:slf4j-timber:1.0.1" - implementation("com.crashlytics.sdk.android:crashlytics:2.9.5@aar") { + implementation("com.crashlytics.sdk.android:crashlytics:2.9.7@aar") { transitive = true } - implementation("com.crashlytics.sdk.android:answers:1.4.3@aar") { + implementation("com.crashlytics.sdk.android:answers:1.4.5@aar") { transitive = true } debugImplementation "com.amitshekhar.android:debug-db:1.0.4" testImplementation "junit:junit:4.12" - testImplementation "io.mockk:mockk:1.8.9" - testImplementation "org.mockito:mockito-inline:2.23.0" + testImplementation "io.mockk:mockk:1.8.13.kotlin13" + testImplementation "org.mockito:mockito-inline:2.23.4" testImplementation 'org.threeten:threetenbp:1.3.8' androidTestImplementation 'androidx.test:core:1.0.0' androidTestImplementation 'androidx.test:runner:1.1.0' androidTestImplementation 'androidx.test.ext:junit:1.0.0' - androidTestImplementation "org.mockito:mockito-android:2.23.0" + androidTestImplementation "org.mockito:mockito-android:2.23.4" androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version" } diff --git a/build.gradle b/build.gradle index 543882869..95b800a19 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.3.10' + ext.kotlin_version = '1.3.11' repositories { mavenCentral() google() @@ -13,6 +13,7 @@ buildscript { classpath "io.fabric.tools:gradle:1.26.0" classpath "com.github.triplet.gradle:play-publisher:1.2.2" classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.2" + classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta02' } }