Comparing an obfuscator (e.g. proguard) vs. c preprocessor (e.g. gnu cpp);
public static final int AAA = 1;
vs.
#define AAA 1
and using AAA in many different classes that is why it is public.
Is byte-code produced by obfuscator and preprocessor different ? I dont have enough knowledge about byte-code, so I didnt make any reverse engineering.
I dont really get if obfuscator does the same thing or not.
Thanks in advance.
MB

Reply With Quote

