Alex Bonel
Alex Bonel

Reputation: 11

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?

Upvotes: 1

Views: 469

Answers (1)

iarwain01
iarwain01

Reputation: 424

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.

Upvotes: 3

Related Questions