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?
|
feedback
|
|
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:
Or with a regular expression containing a negator:
The standard Ant script will still merge all referenced jars in the single output jar though. | |||||||
feedback
|
|
In your config file, set up your jars as library jars instead of input jars. This leaves them untouched.
| |||
feedback
|