farmerbb
06/23/2022, 4:02 PMfarmerbb
06/23/2022, 4:55 PM-keep class androidx.compose.runtime.** { *; }
to my ProGuard rules, but at least I get an unobfuscated stack trace now.
I guess my next question is, what else would cause a Compose app to behave differently between a debug and release build that would result in a crash like this?farmerbb
06/23/2022, 5:10 PMColton Idle
06/23/2022, 5:45 PMfarmerbb
06/23/2022, 5:52 PMBox {
if (data == null) {
// ...
return@Box
}
// ...
}
But this works fine:
Box {
if (data == null) {
// ...
} else {
// ...
}
}
Colton Idle
06/23/2022, 5:53 PMfarmerbb
06/23/2022, 5:53 PMmyanmarking
06/24/2022, 9:13 AM