I wanted to ask you, yes Does Xamarin Android support System.Net.Sockets'?
I have tried it in the following way (this is a part of the code)
IPAddress ipAd = IPAddress.Parse("192.168.1.4");
// use local m/c IP address, and
// use the same in the client
/* Initializes the Listener */
TcpListener myList=new TcpListener(ipAd,5555);
/* Start Listeneting at the specified port */
myList.Start();
But the application on the cell phone closes unexpectedly.
Help me please, I would appreciate it.