It seems that your AndroidManifest.xml
doesn’t give permission for your app to access the Internet.
Your error log states:
Permission denied (missing INTERNET permission?)
Taken from The Android docs at http://developer.android.com/reference/android/Manifest.permission.html#INTERNET
String | INTERNET | Allows applications to open network sockets.
Add the following line to your AndroidManifest.xml
to allow Internet access:
<uses-permission android:name="android.permission.INTERNET" />
solved JSON parsing in fragmant [closed]