[Answer]-Sending JSON from Android

1👍

In Android, you are not allowed run Network Tasks on the Main Thread. You should use an AsyncTask instead.

http://developer.android.com/reference/android/os/AsyncTask.html

Leave a comment