I\'ve spent 2 days to find a solution with of problem.
Here is the error:
E/log_tag: Error parsing data org.json.JSONException: Value of type java.l
In my case I was not decoding the jSon string before parsing it as jSon object. The following worked for me.
JSONObject responseJSonObj = new JSONObject( URLDecoder.decode( result, "UTF-8" ) );
Where result contains the jSon string to be parsed.
result