Skip to content
New issue

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

ProGuard not obfuscating class names, package names, or method names #225

Open
seailz opened this issue Jun 7, 2022 · 1 comment
Open

Comments

@seailz
Copy link

seailz commented Jun 7, 2022

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>
@lasselindqvist
Copy link
Collaborator

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants