Where does Android Studio save the ProGuard mapping file?

前端 未结 8 863
挽巷
挽巷 2020-12-04 06:37

In Android Studio, where are the ProGuard mapping files generated after compiling a signed APK?

I\'m not sure if it isn\'t working or if I just forgot the file path,

相关标签:
8条回答
  • 2020-12-04 06:39

    It should be located at build/outputs/proguard/release/mapping.txt in your application module's directory.

    In the latest version of ProGuard and Android Studio, the file is located at build/outputs/mapping/release/mapping.txt.

    0 讨论(0)
  • 2020-12-04 06:41

    I am using version Android Studio 2.2.2. For me it's located in the following locations:

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

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

    0 讨论(0)
  • 2020-12-04 06:48

    Because I'm dumb and get lost even when somebody tells me where the file is:

    cd StudioProjects/fooProject
    find . -name "mapping.txt" | xargs less
    
    0 讨论(0)
  • 2020-12-04 06:49

    Its quite late to answer this question but just in case someone need my answer.

    Location of Mapping file to deobfuscate:

    ProGuard saves the file in the app app/build/outputs/mapping/FLAVOR/release/mapping.txt

    Generally in debug mode you don't need the mapping file because there generally obfuscation is disabled. If it is not that case then make sure in build.gradle file you have below code for debug variant.

    debug {
        minifyEnabled false
        debuggable true
    }
    

    Some Gotchas:

    mapping.txt file gets overwritten every time you create a release build with ProGuard, so first take backup of that file before creating a new release. It will help to obfuscated stack trace from an older version of your app.

    Apart from that there are two ways to obfuscate your code :

    1. Upload your mapping.txt file to Google play Console:

    When publishing your app on Google Play, you can upload the mapping.txt file for each version of your APK. Then Google Play will deobfuscate incoming stack traces from user-reported issues so you can review them in the Google Play Console.

    2. Use local sdk tool retrace.sh/retrace.bat:

    Some times you want to run the release version of your app(by changing build variant to release and running it) to cross check and fix the errors so that it does not happens in production ( when released to play-store).

    To convert an obfuscated stack-trace to a readable one yourself, use the retrace script (retrace.bat on Windows; retrace.sh on Mac/Linux).

    It is located in the <sdk-root>/tools/proguard/bin/ directory.

    <sdk-root> is the place where your all android libraries and sdks were installed.

    The script takes the mapping.txt file and your stack trace, producing a new, readable stack trace.

    Command Syntax:

    retrace.bat|retrace.sh [-verbose] mapping.txt [<stacktrace_file>]
    

    For example:

    retrace.bat -verbose mapping.txt obfuscated_trace.txt
    

    I prefer local version of obfuscating as is quite handy to pre-check production errors.

    I hope it helps.

    0 讨论(0)
  • 2020-12-04 06:50

    I found that it was not being generated, so I added this to the rules file

    -printmapping build/outputs/mapping/release/mapping.txt
    
    0 讨论(0)
  • 2020-12-04 06:55

    I found it cleaner to configure proguard to write the mapping.txt file to a location outside of the build/ directory tree, so that it could be more conveniently checked into version control.

    To achieve this, put this in your proguard-rules.pro file:

    -printmapping mapping.txt
    

    This will (most likely) place it in the same directory as your proguard-rules.pro file. Ultimately, you probably want to write it to the same directory as your APK file and with an equivalent name (which might include flavor, build type etc).

    Note: in my experience, this is not overruled by the proguard template file (which was suggested by a commenter to another answer here).

    UPDATE: If you have multiple product flavors, then this is a much better solution: https://stackoverflow.com/a/31116608/444761

    0 讨论(0)
提交回复
热议问题