Hi, I’m encountering an unusual issue with the Mat...
# compose
m
Hi, I’m encountering an unusual issue with the Material 3
NavigationBar
. In release mode, the navigation bar’s colors differ from those in the debug build. I’ve traced the issue to ProGuard, but even using the rule
-keep class androidx.compose.material3.** { *; }
doesn’t solve the problem. The only ProGuard flags that seem to work are
-dontobfuscate
and
-dontshrink
. I’m wondering if someone here faced such issue. Thanks