In the case, if I will
- build a project
- clean up all binaries
- build it again (no source/resources and etc has changed).
Does Proguard guarantee to provide the same mapping.txt file?
|
|
ProGuard is deterministic: for the same input, it will generate the same output. There is one subtlety though: if the operating system lists input files in a directory (notably class files that are not inside an archive) in a different order, then they may be processed in a different order, and the output can be different. |
|||
|
|
|
It might actually happen, but i don't think proguard guarantees that. I found this in the Proguard documentation that will allow you to reuse your mapping.txt to avoid changes on the mappings
|
|||
|
|
|
If you want a guarantee then you have to use the mappings file as input to the obfuscation process. But then you carefully have to check all warnings about conflicts relating to that mapping file. If you ignore that, you may get subtle errors, when working with reflection. |
|||
|
|