From a82f3994b433bb063dac823978c029eee377f843 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geoffrey=20M=C3=A9tais?= Date: Mon, 26 Apr 2021 21:51:16 +0200 Subject: [PATCH] Upgrade dependencies --- application/mediadb/build.gradle | 6 +++--- application/moviepedia/build.gradle | 6 +++--- build.gradle | 15 ++++++++------- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/application/mediadb/build.gradle b/application/mediadb/build.gradle index 1e4dff86f..95a22105b 100644 --- a/application/mediadb/build.gradle +++ b/application/mediadb/build.gradle @@ -63,9 +63,9 @@ dependencies { implementation "androidx.appcompat:appcompat:$rootProject.ext.appCompatVersion" implementation "androidx.core:core-ktx:$rootProject.ext.androidxCoreVersion" - testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' + testImplementation 'junit:junit:4.13' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' //Room implementation "androidx.room:room-ktx:$rootProject.ext.roomVersion" kapt ('org.xerial:sqlite-jdbc:3.34.0') diff --git a/application/moviepedia/build.gradle b/application/moviepedia/build.gradle index 32c3f92d8..528b3b9c8 100644 --- a/application/moviepedia/build.gradle +++ b/application/moviepedia/build.gradle @@ -66,9 +66,9 @@ dependencies { implementation "com.squareup.moshi:moshi-adapters:$rootProject.ext.moshi" implementation("com.squareup.okhttp3:logging-interceptor:4.2.1") - testImplementation 'junit:junit:4.12' - androidTestImplementation 'androidx.test.ext:junit:1.1.1' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' + testImplementation 'junit:junit:4.13' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' } static def getMoviepediaUrl(project) { diff --git a/build.gradle b/build.gradle index 9f8ec83fd..ba8da95ee 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.android_plugin_version = '4.1.1' - ext.kotlin_version = '1.4.20' + ext.kotlin_version = '1.4.31' ext.kotlinx_version = '1.4.1' repositories { flatDir dirs: "gradle/plugins" @@ -46,13 +46,13 @@ ext { androidxLegacyVersion = '1.0.0' androidxCoreVersion = '1.3.2' appCompatVersion = '1.2.0' - lifecycleVersion = '2.3.0' + lifecycleVersion = '2.3.1' androidxPreferencesVersion = '1.1.1' androidxVersion = '1.1.0' - androidxActivityVersion = '1.2.1' - androidxFragmentVersion = '1.3.1' - androidxAnnotationVersion = '1.1.0' - androidxRecyclerviewVersion = '1.1.0' + androidxActivityVersion = '1.2.2' + androidxFragmentVersion = '1.3.3' + androidxAnnotationVersion = '1.2.0' + androidxRecyclerviewVersion = '1.2.0' androidxMediaVersion = '1.1.0' androidxLeanbackVersion = '1.0.0' //fixme : When we update this dep, please verify of this issue is fixed: https://github.com/material-components/material-components-android/issues/1086 @@ -66,7 +66,8 @@ ext { pagingVersion = '2.1.2' junitVersion = '4.13' mockito = '2.25.0' - retrofit = '2.6.1' + //Retrofit 2.7 drops Android 5 support + retrofit = '2.6.4' moshi = '1.8.0' powerMock = '2.0.2' espressoVersion = '3.3.0'