Hi, I am trying to obfuscate my program, although there are a HEAP of method names I need to keep because they are being called by scripts.
Is there a fast way to do this in a .pro file?
instead of
-keep public class package1.class1
{
void function1(java.lang.String);
void function2(float);
…
boolean function2000()
}
…
-keep public class package100.class100
{
…
}
otherwise this is going to take forever! >:(
Thanks,
Roland