I have an app which uses signalR when I try it in the browser it works properly. of course the connection is to an absolute URLץ
When I deploy the app to an android device it doesn't work. I connected Chrome to do remote debug to the app's webview and I can see the network tab.
The negotiation is working and I can see result but besides that nothing works.
I assume it might be a permission\configuration issue since it works on browser.
Which steps should I take to make this work?
So I managed to make it work. Since I'm doing my cross-domain communication using JSONP i wanted to do the same with signalR.
In my browser it worked properly but when compiled to APK and ran on device it didn't work.
changing signalR to use CORS and not jsnop solved the issue.