Skip to content

Commit

Permalink
Fix crash that still is in lifecycle -_-
Browse files Browse the repository at this point in the history
  • Loading branch information
pyamsoft committed Sep 4, 2024
1 parent a2a09a9 commit ae6040c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
defaultConfig {
applicationId = "com.pyamsoft.tetherfi"

versionCode = 45
versionName = "20240903-1"
versionCode = 46
versionName = "20240903-2"

minSdk = rootProject.extra["minSdk"] as Int
targetSdk = rootProject.extra["targetSdk"] as Int
Expand Down
10 changes: 9 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,12 @@

# Keep line numbers for Stack Traces
-keepattributes LineNumberTable,SourceFile
-renamesourcefileattribute SourceFile
-renamesourcefileattribute SourceFile

# https://issuetracker.google.com/issues/336842920#comment5
-if public class androidx.compose.ui.platform.AndroidCompositionLocals_androidKt {
public static *** getLocalLifecycleOwner();
}
-keep public class androidx.compose.ui.platform.AndroidCompositionLocals_androidKt {
public static *** getLocalLifecycleOwner();
}

0 comments on commit ae6040c

Please sign in to comment.