From f76f1ac18cf8ddf5545a42267d6500e7ad129bd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20B=C3=A9raud?= <adrien.beraud@savoirfairelinux.com> Date: Tue, 8 Jun 2021 17:23:48 -0400 Subject: [PATCH] build: update dependencies Change-Id: Icf3f540a0d1268b200bc8807dd51915074dac323 --- ring-android/app/build.gradle | 12 ++++++------ ring-android/libringclient/build.gradle | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ring-android/app/build.gradle b/ring-android/app/build.gradle index 92b544cb4..4359e5955 100644 --- a/ring-android/app/build.gradle +++ b/ring-android/app/build.gradle @@ -76,22 +76,22 @@ android { } dependencies { - def dagger_version = '2.35.1' + def dagger_version = '2.36' implementation fileTree(include: '*.jar', dir: 'libs') implementation project(':libringclient') - implementation 'androidx.core:core:1.3.2' - implementation "androidx.appcompat:appcompat:1.2.0" + implementation 'androidx.core:core:1.5.0' + implementation "androidx.appcompat:appcompat:1.3.0" implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation "androidx.legacy:legacy-support-core-utils:1.0.0" implementation "androidx.cardview:cardview:1.0.0" implementation "androidx.preference:preference:1.1.1" - implementation "androidx.recyclerview:recyclerview:1.2.0" + implementation "androidx.recyclerview:recyclerview:1.2.1" implementation "androidx.leanback:leanback:1.1.0-rc01" implementation "androidx.leanback:leanback-preference:1.1.0-rc01" implementation 'androidx.tvprovider:tvprovider:1.0.0' - implementation "androidx.media:media:1.3.0" + implementation "androidx.media:media:1.3.1" implementation "androidx.percentlayout:percentlayout:1.0.0" implementation "com.google.android.material:material:1.3.0" implementation 'com.google.android:flexbox:2.0.1' @@ -99,7 +99,7 @@ dependencies { implementation "androidx.sharetarget:sharetarget:1.1.0" // ORM - implementation 'com.j256.ormlite:ormlite-android:5.3' + implementation 'com.j256.ormlite:ormlite-android:5.5' // Barcode scanning implementation('com.journeyapps:zxing-android-embedded:4.2.0') { transitive = false } diff --git a/ring-android/libringclient/build.gradle b/ring-android/libringclient/build.gradle index 75ed0421c..7ab42b7dc 100644 --- a/ring-android/libringclient/build.gradle +++ b/ring-android/libringclient/build.gradle @@ -14,7 +14,7 @@ dependencies { implementation 'javax.inject:javax.inject:1' // ORM - implementation 'com.j256.ormlite:ormlite-core:5.3' + implementation 'com.j256.ormlite:ormlite-core:5.5' // Required -- JUnit 4 framework testImplementation 'junit:junit:4.13.2' @@ -23,7 +23,7 @@ dependencies { implementation 'io.reactivex.rxjava2:rxjava:2.2.21' // gson - implementation 'com.google.code.gson:gson:2.8.6' + implementation 'com.google.code.gson:gson:2.8.7' } -- GitLab