I must pass my object with IPC,like this class
public class ForIpc {
JsonObject info = new JSONObject();
public void add(String key, String value) {
info.put(key,value);
}
}
ForIpc can implents Parcelable,but how to handle JsonObject?