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.

link|improve this question
feedback

2 Answers

I've never used ProGuard, but you should be able to exclude classes, package and more from obfuscation using the "keep" options.

link|improve this answer
I want something like the opposite of keep. Obfuscate only the specified name spaces would be great... – albert Aug 9 '10 at 18:30
I'm guessing, but try not telling ProGuard where the ZIP files for the libs are; i.e. removing them from the classpath. – Stephen C Aug 9 '10 at 22:46
feedback

Proguard makes a distinction between input JARs and library JARs. You should specify code that should be obfuscated/shrunk using injar and code that should not be modified using libraryjar.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.