So I am trying to create a server in an android application onto a remote URI and tried to do this using the createWebServer(), but it seems like this doesn't work because I cannot access the address on my computer.
server = WebServers.createWebServer(Executors.newCachedThreadPool(), new InetSocketAddress(HOSTNAME,PORT), URI.create(HOSTNAME + ":" + PORT));
Does anyone know how to do this using Webbit?