build: update deps

This commit is contained in:
Alexander Capehart 2024-04-17 22:07:38 -06:00
parent 754762b24d
commit b19283002f
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
2 changed files with 4 additions and 4 deletions

View file

@ -86,9 +86,9 @@ dependencies {
// --- SUPPORT --- // --- SUPPORT ---
// General // 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.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" implementation "androidx.fragment:fragment-ktx:1.6.2"
// Components // Components
@ -137,7 +137,7 @@ dependencies {
// Material // Material
// TODO: Exactly figure out the conditions that the 1.7.0 ripple bug occurred so you can just // TODO: Exactly figure out the conditions that the 1.7.0 ripple bug occurred so you can just
// PR a fix. // PR a fix.
implementation "com.google.android.material:material:1.10.0" implementation "com.google.android.material:material:1.13.0-alpha01"
// Dependency Injection // Dependency Injection
implementation "com.google.dagger:dagger:$hilt_version" implementation "com.google.dagger:dagger:$hilt_version"

View file

@ -1,7 +1,7 @@
buildscript { buildscript {
ext { ext {
kotlin_version = '1.9.23' kotlin_version = '1.9.23'
navigation_version = "2.5.3" navigation_version = "2.7.7"
hilt_version = '2.51.1' hilt_version = '2.51.1'
} }