Debug Xamarin Sports Sample Locally
I am having trouble debugging the Xamarin Sports Sample locally on my development machine, so I can debug both the mobile app and the services on the same machine. I have got the s
Solution 1:
Your device/emulator probably doesnt´t have access to your server machine. Check your server local host ip, and run this with PowerShell as administrator:
netsh http add urlacl url=http://192.168.X.X:XXXX/ user=everyoneReplace the ip:port with your host ip and the app port.
Then create a new <Binding> in your applicationhost.config pointing to the above ip:port.
More details (and possible duplicate) here: How to call your own ASP.NET MVC project preaent on same machine from xamrin webview
Post a Comment for "Debug Xamarin Sports Sample Locally"