build: update deps

This commit is contained in:
Alexander Capehart 2023-10-16 20:04:34 -06:00
parent b84e3de3e0
commit 73ef51c8be
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
2 changed files with 7 additions and 7 deletions

View file

@ -85,9 +85,9 @@ dependencies {
// --- SUPPORT ---
// General
implementation "androidx.core:core-ktx:1.10.1"
implementation "androidx.core:core-ktx:1.12.0"
implementation "androidx.appcompat:appcompat:1.6.1"
implementation "androidx.activity:activity-ktx:1.7.2"
implementation "androidx.activity:activity-ktx:1.8.0"
implementation "androidx.fragment:fragment-ktx:1.6.1"
// Components
@ -100,7 +100,7 @@ dependencies {
implementation "androidx.viewpager2:viewpager2:1.0.0"
// Lifecycle
def lifecycle_version = "2.6.1"
def lifecycle_version = "2.6.2"
implementation "androidx.lifecycle:lifecycle-common:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
@ -117,7 +117,7 @@ dependencies {
implementation "androidx.preference:preference-ktx:1.2.1"
// Database
def room_version = '2.6.0-alpha03'
def room_version = '2.6.0-rc01'
implementation "androidx.room:room-runtime:$room_version"
ksp "androidx.room:room-compiler:$room_version"
implementation "androidx.room:room-ktx:$room_version"
@ -134,7 +134,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-alpha06"
implementation "com.google.android.material:material:1.10.0"
// Dependency Injection
implementation "com.google.dagger:dagger:$hilt_version"

View file

@ -1,6 +1,6 @@
buildscript {
ext {
kotlin_version = '1.9.0'
kotlin_version = '1.9.10'
navigation_version = "2.5.3"
hilt_version = '2.47'
}
@ -12,7 +12,7 @@ buildscript {
}
plugins {
id "com.android.application" version "8.1.0" apply false
id "com.android.application" version '8.1.2' apply false
id "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
id "com.google.devtools.ksp" version '1.9.0-1.0.12' apply false