I obfuscated my classes and updated my x7 configuration, but I added that proguard changed the names of my setter methods and turned it into something like
public void d(a a){
b= a;
}
therefore, when spring tries to call setB ("something") by reflection, it will work. what is a good way to avoid reflection errors when obfuscated? any thoughts
source
share