Is it possible to use Proguard for only obfuscation. I don't want proguard to remove any classes from my projects. My intention to use Proguard is only for obfuscation so as to prevent reverse engineering.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 8 down vote accepted

Yes, by specifying

-dontshrink
-dontoptimize

You can find details on all configuration options in the ProGuard manual.

Note that shrinking and optimization may help preventing reverse engineering a bit.

link|improve this answer
Thanks.I tried -dontoptimze before but it was still removing class files. When i tried both -dontshrink and -dontoptimize it works. – Vinoth Jul 11 '11 at 7:04
feedback

Your Answer

 
or
required, but never shown

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