I\'m working on a library that is distributed as a java jar, and I\'m running proguard on it in such a way as to only leave the required interfaces exposed. I have a configu
to keep all internal enums try this:
-keep class * { public enum **; }
it saves me from writing every of 123 enum in proguard config.
Also, don't forget -keepAttributes if you are processing a library
-keepAttributes