I am trying to create a socket with a hard-coded IP address and socket in a remote process:
server = new ServerSocket(80);
and I get an exception that is excluded from the permission, even if I added the INTERNET permission to the manifest file.
What could be wrong with that?
source
share