Skip to content Skip to sidebar Skip to footer

Android Frustrating Network Error

So, for the past two days straight, I get this error while trying to connect. Tried UDP,TCP and Httprequest/Httppost. We tried using the APK on two devices Used WIFI while trying a

Solution 1:

Brother seems to be problem with your manifest file Put your permission above application tag and let me know if problem still persist

[EDIT]

<uses-permissionandroid:name="android.permissions.ACCESS_WIFI_STATE" /><uses-permissionandroid:name="android.permissions.CHANGE_WIFI_STATE" />

change permissions to permission and run your code once

<uses-permissionandroid:name="android.permission.ACCESS_WIFI_STATE" /><uses-permissionandroid:name="android.permission.CHANGE_WIFI_STATE" />

Post a Comment for "Android Frustrating Network Error"