June 2018
Beginner to intermediate
394 pages
9h 2m
English
ProGuard produces a mapping.txt document that maps ProGuard-obfuscated symbols to their unique names. On the off chance that you have ProGuard enabled, uploading your mapping documents allows you to see deobfuscated stack traces in the Crash Reporting console. For testing, configure ProGuard for debug build types and use the ./gradlew assembleDebug command:
buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' }}
To upload ProGuard mapping files:
// For Android ...Read now
Unlock full access