Permission to Send data
Is there a permission to send data to the server ? Because my data sent to the server when I use java project but when the code written in android project th开发者_StackOverflow中文版e data can not be uploaded. Thanks...
Do you have Internet permission in Manifest file? If not, add this
<uses-permission
android:name="android.permission.INTERNET" />
into manifest file.
精彩评论