I got the following request from an Android developer:
Would you change the webservice back-end so that it returnes empty strings for empty fields instead of null.
The Android json parser converts null to a string containing "null".
The code:
import com.google.gson.Gson;
//...
private OrganizationSearchResult result;
//...
Gson gson = new Gson();
result = gson.fromJson(resultString, OrganizationSearchResult.class);
Is this a known issue?
If so, is there a known work-around for it?