A simple socket app in Android needs some special permissions to connect through the internet?
Whats wrong with my code? It always get Exceptions when it tryes to co
Any internet access from your application requires the internet acces permisison.
Android Permissions
The permission you want is called "INTERNET"
Do you have
<uses-permission android:name="android.permission.INTERNET" />
in your manifest? Outside the application tags.