I\'m working with android and gson and i was wondering if i can ignore a field from the webservice.
this its my gson object
Gson gson = new GsonBuil
You can call gson.fromJson(inputString, localObject) and if localObject doesn't declare a validator variable, it will just skip it.
gson.fromJson(inputString, localObject)