Hi
I am using Proguard 7.3 to obfuscate my web app. I have my utility jars (say a.jar) that goes as dependency jars to other main jar (main.jar).
So I tried this way
- Obfuscate my utility jar (a.jar)
- Add this obfuscated utility jar as dependency to other jar (main.jar).
- Failed – While I was obfuscating the my others jar (main.jar), obfuscation fails saying classes not found. Those classes are actually part of my utility jar(a.jar) . May be as it is obfuscated, other jar(main.jar) is not able to find it.
What could be solution for this?