In Android app i want to return JSONObject from doInBackground() method to onPostExecute() method. Here is the code:
doInBackground()
onPostExecute()
private cl
OK, Now look at this carefully,
private class AddAsyncTask extends AsyncTask
In your AsyncTask third Parameter is String So change it to JSONObject .
String
JSONObject
like,