Is it possible to distribute a proguard file with ...
# compose-desktop
s
Is it possible to distribute a proguard file with a library similar to what's possible with Android? It seems like the obvious answer is no. All of my searching only gives Android results.
j
No. Embedded proguard rules in jars were extracted by AGP and fed to proguard. R8 reads the rules directly from jars. Another reason why R8 should be the default shrinker for Compose Desktop JVM.
1
s
There is an issue to track this here: https://github.com/JetBrains/compose-jb/issues/1604