How can I go about creating an obfuscate jar file? As of now I can easily export my Android lib project to a jar and use it. How do I obfuscate the jar file?
My end goa
Turns out it is possible and it's not that hard. After 3hrs of trying I finally figured it out!
Android provides a convenient proguard GUI under:
android-sdk\tools\proguard
Using the GUI you just select the in.jar and the out.jar. Than you must select the android.jar and remove the selected default rt.jar.
Once that's done you must carefully select the Shrinking and Obfuscation options.
I hope in some way or another this helps!