Problems with internet permission in android
everyone!!! I have got some little problem with internet permission in my android application. I have defined the permission in AndroidManifest.xml , but when I start my application, I don`t get data from internet. This is IOException tag from my LogCat:
12-16 10:开发者_运维知识库08:57.736: DEBUG/IOException(281): Permission denied (maybe missing INTERNET permission)
Can anybody help me to solve this problem?
EDIT: Well, I misread your post. Sorry for that.
Be sure to define the <uses-permission android:name="android.permission.INTERNET" />
inside the <manifest>
tag, but outside of the <application>
tag.
精彩评论