Hi, I am currently using ProGuard to incrementally obfuscate java code at my company. I am running into some strange problems that I could not figure out by reading through the documentation. Scenario: I have 3 mapping files for 3 different libraries that I have obfuscated with ProGuard; util, framework, and driver. Util is obfuscated first, and its map file is fed into framework with the -applymapping option. Framework is then obfuscated and its output mapping file is concatinated with util to generate...
Hi, I'm currently using ProGuard to obfuscate and optimize code for my company. I am working towards incrementally obfuscating our source and have a few questions regarding the -applymapping option. At what step does ProGuard actually enforce the mapping provided with the applymapping option? To further explain, here is an example. I specified a mapping in my configuration file with the applymapping option that had the following mapping for a certain class: void main(java.lang.String[]) -> main but...
Hi, I'm currently using ProGuard to obfuscate and optimize code for my company. I am working towards incrementally obfuscating our source and have a few questions regarding the -applymapping option. At what step does ProGuard actually enforce the mapping provided with the applymapping option? To further explain, here is an example. I specified a mapping in my configuration file with the applymapping option that had the following mapping for a certain class: void main(java.lang.String[]) -> main but...