when using proguard, it seems to obfuscate entire name spaces that I am merely including. Can I tell it to only obfuscate my code and not all the libs im using? Some of the libs rely on reflection of sorts.
|
I've never used ProGuard, but you should be able to exclude classes, package and more from obfuscation using the "keep" options. | |||||
feedback
|
|
Proguard makes a distinction between input JARs and library JARs. You should specify code that should be obfuscated/shrunk using | ||||
|
feedback
|