We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
here is my plugin config:
<plugin> <groupId>com.github.wvengen</groupId> <artifactId>proguard-maven-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals><goal>proguard</goal></goals> </execution> </executions> <configuration> <options> <option>-allowaccessmodification</option> <option>-overloadaggressively</option> <option>-repackageclasses ''</option> <option>-microedition</option> <option>-obfuscationdictionary ${project.basedir}/src/main/resources/obf-class.txt</option> <option>-packageobfuscationdictionary ${project.basedir}/src/main/resources/obf-class.txt</option> <option>-classobfuscationdictionary ${project.basedir}/src/main/resources/obf-class.txt</option> <option>-dontwarn</option> <option>-keep public class com.seailz.* { public protected *; } </option> </options> </configuration> </plugin>
The text was updated successfully, but these errors were encountered:
Hi. This would need more information in order to be actionable. What kind of a class do you expect it to obfuscate and what is the end result you get?
Sorry, something went wrong.
No branches or pull requests
here is my plugin config:
The text was updated successfully, but these errors were encountered: