Menu

Identify obfuscated stacktraces

Help
Disha
2020-03-20
2020-04-06
  • Disha

    Disha - 2020-03-20

    Could someone help me out with how can I identify using code if a stacktrace is obfuscated using Proguard or not?

     

    Last edit: Disha 2020-03-20
  • Eric Lafortune

    Eric Lafortune - 2020-04-06

    You generally can't know for sure.

    • ProGuard by default uses names a, b, c,... for classes, fields and methods, but a developer can specify his or her own dictionaries.
    • In the ProGuard examples, the source file name in a stack trace is set to "SourceFile" and many developers adopt that as well.