From b19283002fc3e7dbf6589eb7a785dfb3f0d599d8 Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Wed, 17 Apr 2024 22:07:38 -0600 Subject: [PATCH] build: update deps --- app/build.gradle | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index e43141a3c..522858562 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -86,9 +86,9 @@ dependencies { // --- SUPPORT --- // General - implementation "androidx.core:core-ktx:1.12.0" + implementation "androidx.core:core-ktx:1.13.0" implementation "androidx.appcompat:appcompat:1.6.1" - implementation "androidx.activity:activity-ktx:1.8.2" + implementation "androidx.activity:activity-ktx:1.9.0" implementation "androidx.fragment:fragment-ktx:1.6.2" // Components @@ -137,7 +137,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.10.0" + implementation "com.google.android.material:material:1.13.0-alpha01" // Dependency Injection implementation "com.google.dagger:dagger:$hilt_version" diff --git a/build.gradle b/build.gradle index 2b2c7a9c5..73de01b89 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { kotlin_version = '1.9.23' - navigation_version = "2.5.3" + navigation_version = "2.7.7" hilt_version = '2.51.1' }