Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Version control app/manifest-merger-release-report.txt?

When generating signed APKs from the Build menu I end up with the new file app/manifest-merger-release-report.txt. What is this file and should it be version controlled (like ProGuard's mapping.txt)?

like image 994
mkjeldsen Avatar asked Jan 26 '15 08:01

mkjeldsen


1 Answers

That file is generated by the manifest merging step of the Android build. If you're doing a sophisticated build where multiple flavors and build types are coming into play, and especially if you're directing traffic during the merge by explicitly telling the build system how to handle specific manifest attributes, you may find the report useful.

It's not necessary to save this file, since it's only of use if you're trying to diagnose problems during the build. It's not like the Proguard mapping file, which you may need to keep so you can de-obfuscate errors and stack traces that come in from the wild.

like image 118
Scott Barta Avatar answered Oct 29 '22 16:10

Scott Barta