Hello everyone I have a problem with JSON
{
"browseResults":[
{
"id": "Simulation Examples.Functions.Random1"
},
{
"id": "Simulation Examples.Functions.Random2"
},
{
"id": "Simulation Examples.Functions.Random3"
},
{
"id":"Simulation Examples.Functions.Random4"
}
],
"succeeded": true,
"reason": ""
}
I wanna pull this as using that part of code but can't do it. What can I use instead of it?
JSONObject jsonObject=new JSONObject(result);
String main = jsonObject.getString("browseResults");
Log.i("Content2",main);