-
Thanks Eric for your reply. I had consulted that section before posting, but it requires my jar file built with debugging information which adds 10 to 15 % to the total size.
I wanted to avoid that if I have a choice, so looking for either way if I can get two different methods have different name after obfuscation or get method signature printed with state trace.
I tried removing...
2009-08-08 21:25:42 UTC in ProGuard Java Optimizer and Obfuscator
-
Hello,
What attributes can I enable to keep the method signatures in stack trace?
For sample stack trace given below, when I open the mapping file, I see two different methods of test.pkg1.class1 (having different arguments) mapping to same obfuscated methodname a. So there is no easy way I can decode this stack trace. What am I missing here?
9135 INF 18:47:41.376025...
2009-08-05 21:46:51 UTC in ProGuard Java Optimizer and Obfuscator
-
I added following in configuration and it works fine now. Looks like it was inserting inline invocation.
-dontoptimize.
2009-07-07 16:56:14 UTC in ProGuard Java Optimizer and Obfuscator
-
Hello,
I tried to obfuscate a jar file that has only four classes - Main, ClassOne, ClassTwo, ClassThree and Main class prints an exception when we run it.
When I obfuscated the jar file, it does not print complete stack trace. What am I missing here? Please advise.
===============================
Following is output of original jar file:
java -jar ObfuscatedJavaApp.jar
Exception !!!
2009-07-07 14:56:55 UTC in ProGuard Java Optimizer and Obfuscator