From a9a35c8055e19426b554cc3485fbf190826c5f39 Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Thu, 17 Oct 2024 19:45:47 -0600 Subject: [PATCH] build: update deps nav -> 2.8.3 lifecycle -> 2.8.6 activity -> 1.9.3 --- app/build.gradle | 10 +++++----- build.gradle | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 075860a5a..bf666ec42 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -88,8 +88,8 @@ dependencies { // General implementation "androidx.core:core-ktx:1.13.1" implementation "androidx.appcompat:appcompat:1.7.0" - implementation "androidx.activity:activity-ktx:1.9.0" - // Disabled since 1.7+ has completely broken progressive back gestures. + implementation "androidx.activity:activity-ktx:1.9.3" + // Disabled until I can be secure that predictive back isn't utterly unstable. // noinspection GradleDependency implementation "androidx.fragment:fragment-ktx:1.6.2" @@ -105,7 +105,7 @@ dependencies { implementation "androidx.viewpager2:viewpager2:1.0.0" // Lifecycle - def lifecycle_version = "2.8.3" + def lifecycle_version = "2.8.6" implementation "androidx.lifecycle:lifecycle-common:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version" @@ -135,7 +135,7 @@ dependencies { // Exoplayer (Vendored) implementation project(":media-lib-exoplayer") implementation project(":media-lib-decoder-ffmpeg") - coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.0.4" + coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.1.2" // Image loading implementation 'io.coil-kt:coil-base:2.4.0' @@ -143,7 +143,7 @@ dependencies { // Material // TODO: Exactly figure out the conditions that the 1.7.0 ripple bug occurred so you can just // PR a fix. - implementation "com.google.android.material:material:1.13.0-alpha04" + implementation "com.google.android.material:material:1.13.0-alpha07" // Dependency Injection implementation "com.google.dagger:dagger:$hilt_version" diff --git a/build.gradle b/build.gradle index 575885787..213148be0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { kotlin_version = '1.9.23' - navigation_version = "2.7.7" + navigation_version = "2.8.3" hilt_version = '2.51.1' }