I have created an app in android and it requires some data to be transfered over internet. I have written the codes but I don't see any data transfer on my device. Am I missing any point? Any suggestion will be appreciated.
Asked
Active
Viewed 109 times
1 Answers
1
You need to add permissions in the android Manifest file in order to have internet connection. Did you add these codes in android manifest file?
<uses-permission android:name="android.permission.INTERNET" >
</uses-permission>

Comet
- 163
- 11