Need help with proguard GUI

I want to use proguard Gui to rename all the classes contained in the jar file or at least add 00 after the class name
for example: initial aa.class
after using aa00.class
add 00 to all classes and refactor renamed files

1 Like

Hi,

Welcome to the ProGuard Community! ProGuardGUI can be used to obfuscate and optimize your jar files. ProGuard does not have the ability to add a suffix to your class names as you mentioned. What ProGuard can do is rename classes to randomly generated names (example: aa.class to bWz.class). It will rename classes fully and randomly for each build but cannot append a suffix.

Best Regards,

Aissa

1 Like