google play - Android trouble with crash reports in developer console -


so i'm building app proguard obfuscates code, , uploading mapping.txt deobfuscation files. crash reports show class , method names, don't show line numbers.

in build.gradle:

    buildtypes {     release {         minifyenabled true         proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'     } } 

so upload deobfuscation file: projectfolder/app/build/outputs/mapping/release/mapping.txt

so question is:

  • am uploading correct file deobfuscation? there seeds.txt, dump.txt, usage.txt in directory.

  • is possible line numbers in crash reports through play store when building proguard?

yes, believe mapping.txt right one.

as viewing line numbers, added following proguard-rules.pro file:

# able see line numbers in stack traces  -renamesourcefileattribute sourcefile -keepattributes sourcefile,linenumbertable