views:

43

answers:

1

Hi, I'm trying to develop an android application that uses network connection. The server is up and running, but when i am trying to access it from the device that runs the android app (in debug mode-using eclipse) it outputs a message that 'cannot find the server' after a UnknownHostException occurs! I have tested the server with a java application and it works fine! What is the problem then with the device?

A: 

check your Mainfest.xml file for this line...

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