Skip to content

Tag: obfuscation

Calling a class “if”

I’m trying to decompile / recompile an obfuscated Java program. From the decompiled source code, it looks like the obfuscator has managed to call a class if: Trying to recompile this class of course now results in an error: Is there a way to tell the java compiler to accept if as a class name? Otherwise…

Proguard keep class names?

Hello I am writing an Android app and I have set up Proguard to obfuscate my application. I however use a classloader to dynamically load different extensions to my application. The problem is that these don’t load correctly if their names are changed. How do I keep Proguard from obfuscating specific cl…