How to avoid the following method name from obfuscation?
public static void testClassMethod(String testVaiable1,Stringtestvariable2) {
System.out.println( testVaiable1);
}
but after obfuscating my method was
TestClass.testClassMethod(s:"abc", s1:"pqr");
my proguard file contains the following rules
-keep class com.example.mylibrary.TestClass**
-keepclassmembers class com.example.mylibrary.TestClass**
{*;}
-keep class com.example.mylibrary.TestClass{
public void
testClassMethod(java.lang.String,java.lang.String);
}