Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I get the following Exception running my app:

java.net.SocketException: Permission denied (maybe missing INTERNET permission)

How do I solve the missing permission problem?

share|improve this question

2 Answers

up vote 294 down vote accepted

Add the INTERNET permission to your manifest file.

You have to add this line:

<uses-permission android:name="android.permission.INTERNET" /> 

outside the application tag in your AndroidManifest.xml

share|improve this answer
2  
:) I just thought this informatin does not come up on the first google page maybe it would help others to put the question up here. – Janusz Jul 6 '10 at 6:13
37  
I got more then 2500 views. I think this are at least 1500 people that very quick found a short and precise answer to there question. So no reason to complain about to easy questions. – Janusz Sep 8 '10 at 13:33

In your android manifest file internet permission is provided or not.

If not add the following code .

<manifest xlmns:android...>
 ...
 <uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifest>
share|improve this answer

protected by Michael Myers Nov 4 '10 at 20:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.