I want to avoid obfuscating only a part of my code. Initially, I tried to use the -keep
like this:
-keep class com.my.package.** { *; }
However, the only way I found to got this working as I needed was adding:
-dontobfuscate
Although, this way all the code is not obfuscated, and what I need is to not obfuscate only a specific part of my application (in this case a third party library com.my.package.**
).
Does anyone know if it is possible?