Dependency bumps

This commit is contained in:
Damontecres 2025-10-02 12:15:45 -04:00
parent c5cfa876e4
commit b6f9aee5d4
No known key found for this signature in database
3 changed files with 16 additions and 18 deletions

View file

@ -114,7 +114,7 @@ dependencies {
implementation(libs.androidx.room.common.jvm) implementation(libs.androidx.room.common.jvm)
implementation(libs.androidx.room.ktx) implementation(libs.androidx.room.ktx)
implementation(libs.androidx.compose.material3) implementation(libs.androidx.compose.material3)
implementation(libs.lifecycle.viewmodel.navigation3) implementation(libs.androidx.lifecycle.viewmodel.navigation3)
implementation(libs.androidx.hilt.navigation.compose) implementation(libs.androidx.hilt.navigation.compose)
ksp(libs.androidx.room.compiler) ksp(libs.androidx.room.compiler)
ksp(libs.hilt.android.compiler) ksp(libs.hilt.android.compiler)

View file

@ -5,8 +5,8 @@ kotlin = "2.2.20"
ksp = "2.2.20-2.0.2" # https://github.com/google/ksp/issues/2596 2.0.3 is broken ksp = "2.2.20-2.0.2" # https://github.com/google/ksp/issues/2596 2.0.3 is broken
coreKtx = "1.17.0" coreKtx = "1.17.0"
appcompat = "1.7.1" appcompat = "1.7.1"
composeBom = "2025.09.00" composeBom = "2025.09.01"
compose-runtime = "1.9.1" compose-runtime = "1.9.2"
timber = "5.0.1" timber = "5.0.1"
tvFoundation = "1.0.0-alpha12" tvFoundation = "1.0.0-alpha12"
tvMaterial = "1.0.1" tvMaterial = "1.0.1"
@ -14,19 +14,18 @@ lifecycleRuntimeKtx = "2.9.4"
activityCompose = "1.11.0" activityCompose = "1.11.0"
androidx-media3 = "1.8.0" androidx-media3 = "1.8.0"
coil = "3.3.0" coil = "3.3.0"
jellyfin-sdk = "1.7.0-beta.6" jellyfin-sdk = "1.7.0"
nav3Core = "1.0.0-alpha09" nav3Core = "1.0.0-alpha10"
lifecycleViewmodelNav3 = "1.0.0-alpha04" lifecycleViewmodelNav3 = "2.10.0-alpha04"
material3AdaptiveNav3 = "1.0.0-SNAPSHOT" material3AdaptiveNav3 = "1.0.0-alpha03"
protobuf = "0.9.5" protobuf = "0.9.5"
datastore = "1.1.7" datastore = "1.1.7"
kotlinx-coroutines-android = "1.10.2" kotlinx-coroutines-android = "1.10.2"
kotlinx-serialization = "1.9.0" kotlinx-serialization = "1.9.0"
protobuf-javalite = "4.32.1" protobuf-javalite = "4.32.1"
hilt = "2.57.1" hilt = "2.57.2"
room = "2.8.0" room = "2.8.1"
material3 = "1.3.2" material3 = "1.4.0"
lifecycleViewmodelNavigation3 = "2.10.0-alpha03"
[libraries] [libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" } androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
@ -83,7 +82,6 @@ androidx-room-ktx = { group = "androidx.room", name = "room-ktx", version.ref =
androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" } androidx-room-compiler = { module = "androidx.room:room-compiler", version.ref = "room" }
timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" } timber = { module = "com.jakewharton.timber:timber", version.ref = "timber" }
lifecycle-viewmodel-navigation3 = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-navigation3", version.ref = "lifecycleViewmodelNavigation3" }
[plugins] [plugins]
android-application = { id = "com.android.application", version.ref = "agp" } android-application = { id = "com.android.application", version.ref = "agp" }

View file

@ -9,9 +9,9 @@ pluginManagement {
} }
mavenCentral() mavenCentral()
gradlePluginPortal() gradlePluginPortal()
maven { // maven {
url = uri("https://androidx.dev/snapshots/builds/14137143/artifacts/repository") // url = uri("https://androidx.dev/snapshots/builds/14137143/artifacts/repository")
} // }
} }
} }
dependencyResolutionManagement { dependencyResolutionManagement {
@ -19,9 +19,9 @@ dependencyResolutionManagement {
repositories { repositories {
google() google()
mavenCentral() mavenCentral()
maven { // maven {
url = uri("https://androidx.dev/snapshots/builds/14137143/artifacts/repository") // url = uri("https://androidx.dev/snapshots/builds/14137143/artifacts/repository")
} // }
} }
} }