How can I prevent method SendToGroup()
from Obfuscator in proguard.
Coz, this method name will be call from server side and need to be same name (dynamic method call). It's a push from signalR.
public class main {
private class inner implement x {
@Override
public Object dynamic {
return new Object {
@SuppressWarnings("unused")
public void SendToGroup(String message) {
androidNotification(message);
}
};
}
}
}
I have seen this and this but still not work and not understand.
Please advice.