I have a phonegap app that works fine on ios (since sockets are supported). I'm trying to get the same code to work on android. I am using socketio.jar from https://github.com/Gottox/socket.io-java-client and am pretty sure i've installed it right.
However, when I have the server running and run the app on the emulator, I get no indicator(I have a console.log for when clients connect.)
I'm totally lost as to what to do...does anyone have any advice?
Here is my code. Additionally, I have socketio.jar in the 'libs' folder in my project
<body>
<div class="app">
<h1>Apache Cordova</h1>
<div>
<input type=button value='-' onclick='javascript:process(-1)'>
<input type=test size=10 id='v' name='v' value='0'>
<input type=button value='+' id='plus' onclick='javascript:process(1)'>
</div>
</div>
<script type="text/javascript">
SocketIO socket = new SocketIO('http://54.213.92.113:8080/');
</script>
</body>
</html>