I am developing a Xamarin project using Visual Studio 2015.
The problem is that I cannot start the Android emulator from Visual Studio using the Internet. I am for the proxy.
Using HttpWebRequest , I get an error:
System.Net.WebException: Error: ConnectFailure (network unreachable)
I check the emulator and have not found an internet connection:

I managed to start the emulator by installing proxy / dns using the command line (using emulator.exe -avd avdName -dns-server 192.168.1.1 ), but not from Visual Studio.
My question is: is there a way to set the proxy / dns configuration for Android Emulator from Visual Studio or to any configuration file, for example .ini or config.ini in the Avd folder, or in any other way?
source share