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 goal is to allow others to use my lib.jar in their projects. I just want to protect the code as much as I can... :)

link|improve this question

What have you tried so far? – Nick ODell May 23 '11 at 20:34
feedback

4 Answers

up vote 1 down vote accepted

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!

link|improve this answer
feedback

If it is an external jar, then if you have it in "libs" folder and compile with say Android 2.2+ SDK, it automatically uses proguard to obfuscate the apk. If you want this jar as a library and also obfuscate it before using it in your apk, then it may not be possible. If you are talking of apk obfuscation than Android does this from 2.2 on I think (with proguard), and you dont have to worry about it.

link|improve this answer
Thanks for your comment. I'm actually looking into obfuscating the actual lib.jar file. Flurry does this with their SDK lib. – Jona May 23 '11 at 21:05
Obfuscation that jar may be as simple as running proguard on it, using that obfuscated jar, in Android apk may be difficult. – omermuhammed May 23 '11 at 21:08
feedback

you to enable proguard for your project - its very easy. http://developer.android.com/guide/developing/tools/proguard.html

one common error that can occur is that methods aren't found when using reflection. This is because the obfuscation removes method names and sometimes even whole classes. If you have custom views the same thing can happen.

You configure what classes to keep by using the "-keep" flag in proguard.cfg

here are some common ones this is from a maven build - but the concept is the same

-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.view.View {
                                public <init>(android.content.Context);
                                public <init>(android.content.Context, android.util.AttributeSet);
                                public <init>(android.content.Context, android.util.AttributeSet, int);
                                public void set*(...);  
-keepclasseswithmembers class * {
                                public <init> (android.content.Context, android.util.AttributeSet); } 
-keepclasseswithmembers class * {
                                public <init> (android.content.Context, android.util.AttributeSet, int); } 
-keepclassmembers class * implements android.os.Parcelable {
                                static android.os.Parcelable$Creator *; }
-keepclassmembers class **.R$* { public static <fields>; } 
-keepclasseswithmembernames class * { native <methods>; } 
-keepclassmembers class * extends java.lang.Enum {
                                public static **[] values();
                                public static ** valueOf(java.lang.String); }
-keepclassmembers class * extends android.app.Activity{
                                public void *(android.view.View); } 

quite a big area, but hope it helps ...

link|improve this answer
Well this is for a whole Android project which I already have working without issues. I just want to obfuscate a jar file with my code. The jar is totally separate from a final project. The jar does contain Android code. This jar is intended to be distributed to other developers. – Jona May 24 '11 at 12:51
feedback

Your Answer

 
or
required, but never shown

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