I have code that appears dead in its Java project, but it's being called elsewhere. How do I tell Proguard to ignore it during the shrinking stage and still obfuscate it?

It seems that you can either shrink or not shrink (all code or nothing). Is there a way to not shrink on specific class member names?

link|improve this question
feedback

1 Answer

You can preserve entry points but still obfuscate them with the option -keep,allowobfuscation. That is very unusual though, since changing their names to meaningless strings makes it practically very difficult to use them.

See ProGuard manual > Usage > Keep options

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.