1

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.

Saurabh
  • 33
  • 1
  • 5

1 Answers1

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