Exclude all classes in a package

By default obfuscate4e adds all exported packages of a plugin to the exclusion list.

There are to options if you want to add other packages to the exclution list:

  1. Export the package using the Manifest editor (if this is useful for your project)
  2. Add a following lines to the plugin’s proguard.cfg file:
    -keep class de.example.plugin.* {
      public protected *; 
    }

    Remark: If you modified the proguard.cfg file manually, then these changes will be lost when re-generating the configuration!