Friends I have a json response like this
{"status":"1","responseCode":"1000","response":{"actorGuid":"1","daRemarks":"Device is Nonoperational","serialNumber":"1234567"}}
I am successfully fetching the status code using
String statusStr = jsonObject.getString("status");
but I also need the serialNumber so please tell how do I fetch it. Please help me with the entire code to fetch it.
Regards