android - Custom obfuscated class name in proguard -


is there way set custom class name in proguard (command in proguard.cfg)?

let's i've got class com.scana.myclass , want proguard obfuscate "tx"

problem solved. can use: -applymapping file-name in proguard.cfg

file content example:

com.scana.myclass -> tx:


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -