Skip to content

Commit

Permalink
Roll back the lifecycle library as it causes production crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
pyamsoft committed Jun 24, 2024
1 parent 6219fc5 commit 2bbaee4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,13 @@ android {
defaultConfig {
applicationId = "com.pyamsoft.tetherfi"

versionCode = 42
versionName = "20240622-1"
versionCode = 43
versionName = "20240622-2"

minSdk = rootProject.extra["minSdk"] as Int
targetSdk = rootProject.extra["targetSdk"] as Int

vectorDrawables.useSupportLibrary = true

}

compileOptions {
Expand Down
4 changes: 3 additions & 1 deletion ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ dependencies {
kapt("com.google.dagger:dagger-compiler:${rootProject.extra["dagger"]}")

// Lifecycle extensions
api("androidx.lifecycle:lifecycle-runtime-compose:2.8.2")
// Not yet
// https://www.reddit.com/r/androiddev/comments/1csjwne/lifecycle_280_only_compatible_with_compose_17/
api("androidx.lifecycle:lifecycle-runtime-compose:2.7.0")

// Compose
api("androidx.compose.ui:ui:${rootProject.extra["compose"]}")
Expand Down

0 comments on commit 2bbaee4

Please sign in to comment.