I am using proguard to obfuscate my android application. The android application contains some native code, which makes callbacks to fully qualified java methods. I need to not obfuscate these classes and the names of their methods. The below properly keeps the class names, but not the method names.

-keep public class com.me.dontobf.*
-keepnames public class com.me.dontobf.*
link|improve this question

77% accept rate
feedback

2 Answers

up vote 2 down vote accepted

For native methods: ProGuard manual > Examples > Processing native methods

-keepclasseswithmembernames class * {
    native <methods>;
}

In this case, for callback methods: ProGuard manual > Examples > Processing callback methods

-keep class mypackage.MyCallbackClass {
    void myCallbackMethod(java.lang.String);
}

Or e.g., if all public methods may be callback methods:

-keep class mypackage.MyCallbackClass {
    public <methods>;
}

You probably also need to keep any program classes that occur in the method descriptors.

link|improve this answer
this works. thank you. – ab11 Oct 24 '11 at 20:50
This helps me a lot. Thank you! – Marcos Vasconcelos Feb 2 at 11:30
feedback

Try:

-keepclasseswithmembernames class * {
    native <methods>;
}

From the ProGuard manual: http://proguard.sourceforge.net/manual/examples.html#native

link|improve this answer
Your suggestion doesn't work for me. I need to preserve method names of non-native methods which are called from native code. Your suggestion keeps class names of classes that contain native methods. – ab11 Oct 24 '11 at 20:22
feedback

Your Answer

 
or
required, but never shown

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