Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the proguard mapping file in Android studio [duplicate]

Tags:

In android studio(2.2.2) where are the proguard mapping files generated after generating a signed APK?

I have Generated Signed Apk file and follow below two paths but in my root folder i did not get any "mapping.txt" file

For debug: \app\build\outputs\mapping\debug\mapping.txt

For release: \app\build\outputs\mapping\release\mapping.txt

please suggest me how can i get this "mapping.txt" file?

like image 294
Krish Avatar asked Nov 21 '16 13:11

Krish


1 Answers

Do you has been generate proguard mapping ?

in proguard-rules.pro type it -printmapping {location}/filename.txt .

example :

For debug

-printmapping build/outputs/mapping/debug/mapping.txt

For release

-printmapping build/outputs/mapping/release/mapping.txt
like image 75
MaqielHM Avatar answered Sep 26 '22 16:09

MaqielHM