Say I have an enum like this:
enum Color { RED,BLUE,GREEN }
After using proguard, and then JADX to de-compile the source code, I noticed that the enums have been only partially obfuscated.
In the de-compiled code, I get something like this:
f.RED
How can I get also get the fields/constants and methods to be obfuscated too?
EDIT!
Don't think this is possible (for good reason), and you should NOT be trying to do this anyway.
Think about what would happen in the case of Color.RED.name() if RED had been obfuscated and you were expecting the String RED.