[Android] Upgrade dependencies
Geoffrey Métais
git at videolan.org
Tue Apr 27 05:53:47 UTC 2021
vlc-android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Mon Apr 26 21:51:16 2021 +0200| [a82f3994b433bb063dac823978c029eee377f843] | committer: Nicolas Pomepuy
Upgrade dependencies
> https://code.videolan.org/videolan/vlc-android/commit/a82f3994b433bb063dac823978c029eee377f843
---
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'
More information about the Android
mailing list