I have a class CustomListener which is Mentioned like below :
public interface CustomListener{
public abstract void abd(ArrayList<customObject> list);
}
this class is in my library and when I built it with maven and Proguard this method gets optimized to generic ArrayList type as below. How can I skip proguard doing that?
public interface CustomListener{
public abstract void abd(ArrayList list);
}