I have obfuscated Lite and a full projects both referencing a library project. At runtime I'm getting "NoSuchMethodException myMethod" error
According to http://proguard.sourceforge.net/index.html#/manual/troubleshooting.html I have to add the following to the proguard.cfg
-keep class mypackage.MyClass { void myMethod(); }
My method returns a String and accepts 3 String parameters so I have added the following to the proguard.cfg
-keep public class com.mycompany.appName.MyClass {
String myMethod(String, String, String);
}
But I still get the same error.
Let's say I'm building the lite version com.mycompany.appName.lite, I'm assuming I don't have to change the package name in the line added to the proguard.cfg since it is a referenced library.
Is there anything I'm missing? Thanks.