From 35102a8af8c3e9f113b675aa1db3b34f77d227f6 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 10 Feb 2023 10:37:59 +0100 Subject: [PATCH] Bumped dependencies --- app/build.gradle | 8 ++++---- app/src/main/java/org/linphone/utils/AudioRouteUtils.kt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index fa814289f..207704ec1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -193,15 +193,15 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.6.0' + implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.core:core-splashscreen:1.0.0' implementation 'androidx.emoji2:emoji2:1.2.0' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' implementation 'androidx.media:media:1.6.0' - implementation "androidx.security:security-crypto-ktx:1.1.0-alpha03" + implementation "androidx.security:security-crypto-ktx:1.1.0-alpha04" implementation "androidx.window:window:1.0.0" - implementation 'androidx.core:core-ktx:+' + implementation 'androidx.core:core-ktx:1.9.0' def nav_version = "2.5.3" implementation "androidx.navigation:navigation-fragment-ktx:$nav_version" @@ -213,7 +213,7 @@ dependencies { implementation 'androidx.recyclerview:recyclerview:1.3.0-rc01' // https://github.com/material-components/material-components-android/blob/master/LICENSE Apache v2.0 - implementation 'com.google.android.material:material:1.7.0' + implementation 'com.google.android.material:material:1.8.0' // https://github.com/google/flexbox-layout/blob/main/LICENSE Apache v2.0 implementation 'com.google.android.flexbox:flexbox:3.0.0' diff --git a/app/src/main/java/org/linphone/utils/AudioRouteUtils.kt b/app/src/main/java/org/linphone/utils/AudioRouteUtils.kt index 68d18dc34..42b367659 100644 --- a/app/src/main/java/org/linphone/utils/AudioRouteUtils.kt +++ b/app/src/main/java/org/linphone/utils/AudioRouteUtils.kt @@ -181,7 +181,7 @@ class AudioRouteUtils { coreContext.core.outputAudioDevice if (audioDevice == null) return false - Log.i("[Audio Route Helper] Playback audio currently in use is [${audioDevice.deviceName} (${audioDevice.driverName}) ${audioDevice.type}]") + Log.i("[Audio Route Helper] Playback audio device currently in use is [${audioDevice.deviceName} (${audioDevice.driverName}) ${audioDevice.type}]") return audioDevice.type == AudioDevice.Type.Speaker }