Proguard rule which I am using is below and com.example.gym.pojo is package name
-keep class com.example.gym.pojo.** { public *; }
-keepclassmembers class com.example.gym.pojo.** { public *; }
My class `import java.util.ArrayList;
public class BulkUserResponse {
public String message;
public boolean success;
public ArrayList<CustomerInfo> customers;
public ArrayList<FeesInfo> fees;}`
After Proguard rule applied class look like
import java.util.ArrayList;public class BulkUserResponse {
public ArrayList customers;
public ArrayList fees;
public String message;
public boolean success;}
I want the same pojo class as it is after applying proguard. because I want to parse all the pojo class. I am using GSON library.
After applying proguard I want my class with public ArrayList<CustomerInfo> customers
Thanks in advance.....