So, how an obfuscated stacktrace from an application shrunk by Proguard is like? Take a look at the following examples: Stacktrace with out Proguard: Stacktrace with standard Proguard configuration: Stacktrace with some options for useful obfuscated stacktraces Proguard configuration: -printmapping out.map -renamesourcefileattribute SourceFile -keepattributes SourceFile,LineNumberTable
When using proguard with your Android project, you may face the following proguard error: Fortunately, this error has been fixed at the latest proguard release (4.7), but the Android SDK still uses a previous version. So all you have to do, it to download the latest proguard version from here, unzip it and copy paste [...]