With ProGuard, how do I obfuscate just one class?
What would be a smart ProGuard configuration to obfuscate just the private methods and constants of one particular class com.acme.Algorithm? I would like to obfuscate just that, because it contains an algorithm that should not be plain obvious when accidentally opening the .jar. I'm a ProGuard newbie. AFAIU, you have to use "keep", but the positive logic of "do obfuscate" is not available, right? So how to exlude my class from a "keep everything" config? Note: I don't want to obfuscate other classes for the moment, because I want to allow the customer to see meaningful stacktraces. Obfuscating