Usage |
---|
Assuming the ProGuard jar is in your class path, the basic ReTrace command is:
java proguard.ReTrace [-verbose]
mapping_file [stacktrace_file]
|
where the arguments have the following meaning:
-verbose |
Optionally specifies to print out more informative stack traces that include not only method names, but also method return types and arguments. |
mapping_file | Specifies the name of the mapping file, produced by ProGuard with the
option "-printmapping mapping_file", while obfuscating
the application that produced the stack trace. |
stacktrace_file | Optionally specifies the name of the file containing the stack trace. If no file is specified, a stack trace is read from the standard input. Blank lines and unrecognized lines are ignored, as far as possible. |
Preserving line number tables is explained in detail in this example in the ProGuard User Manual.
Unobfuscated elements and obfuscated elements for which no mapping is available will be left unchanged.