Skip to content

Commit

Permalink
Upgrading deps. (#1377)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Feb 14, 2024
1 parent 9cbb481 commit 325814d
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.8"
kotlinCompilerExtensionVersion = "1.5.9"
}
}

Expand All @@ -130,7 +130,7 @@ dependencies {
implementation("com.google.accompanist:accompanist-systemuicontroller:$accompanistVersion")

// LiveData
implementation("androidx.compose.runtime:runtime-livedata:1.6.0")
implementation("androidx.compose.runtime:runtime-livedata:1.6.1")
implementation("androidx.lifecycle:lifecycle-runtime-compose:2.7.0")
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.7.0")

Expand Down Expand Up @@ -162,22 +162,20 @@ dependencies {

implementation("io.arrow-kt:arrow-core:1.2.1")
// Unfortunately, ui tooling, and the markdown thing, still brings in the other material2 dependencies
// RC is necessary due to this bug
// https://stackoverflow.com/questions/77877363/no-virtual-method-atljava-lang-objectilandroidx-compose-animation-core-keyfra
implementation("androidx.compose.material3:material3:1.2.0-rc01")
implementation("androidx.compose.material3:material3-window-size-class:1.1.2")
implementation("androidx.compose.material3:material3:1.2.0")
implementation("androidx.compose.material3:material3-window-size-class:1.2.0")

implementation("org.ocpsoft.prettytime:prettytime:5.0.7.Final")
implementation("androidx.navigation:navigation-compose:2.7.6")
implementation("androidx.navigation:navigation-compose:2.7.7")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
testImplementation("androidx.arch.core:core-testing:2.2.0")

implementation("androidx.compose.ui:ui:1.6.0")
implementation("androidx.compose.ui:ui-tooling-preview:1.6.0")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.0")
debugImplementation("androidx.compose.ui:ui-tooling:1.6.0")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.0")
implementation("androidx.compose.material:material-icons-extended:1.6.0")
implementation("androidx.compose.ui:ui:1.6.1")
implementation("androidx.compose.ui:ui-tooling-preview:1.6.1")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.1")
debugImplementation("androidx.compose.ui:ui-tooling:1.6.1")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.1")
implementation("androidx.compose.material:material-icons-extended:1.6.1")

implementation("androidx.activity:activity-compose:1.8.2")
testImplementation("junit:junit:4.13.2")
Expand Down

0 comments on commit 325814d

Please sign in to comment.