When I export android project with proguard.cfg, all referenced .jar files are obfuscated as well. How can I exclude some of that .jars from obfuscation?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 6 down vote accepted

If you don't want to edit the Ant script, you can add -keep options to proguard.cfg for the classes in those external jars. For instance:

-keep class othercode.** { *; }

Or with a regular expression containing a negator:

-keep class !mycode.** { *; }

The standard Ant script will still merge all referenced jars in the single output jar though.

link|improve this answer
I also did it this way (but used keepclasseswithmembers class and keep interface) It worked more or less fine in my case, since separate .jar files had different package names... – alex2k8 Dec 22 '10 at 22:55
1  
Also thought it keeps the names, the code is still seems to be processed and obfuscated. – alex2k8 Dec 27 '10 at 0:03
feedback

In your config file, set up your jars as library jars instead of input jars. This leaves them untouched.

-libjars <path/to/jars>
link|improve this answer
I don't setup input or library jars. This is done by platform ant script. And editing that file is what I try to avoid. – alex2k8 Dec 17 '10 at 23:39
feedback

Your Answer

 
or
required, but never shown

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