Debo
Debo

Reputation: 545

Install Visual Studio Emulator for Android with VS 2015 Professional

I have installed VS 2015 Professional installed in my system and want to install VS Emulator for Android as I need it for Xamarin Android development but the setup doesn't seem to have an option for it(below screenshots). Can someone suggest how I can go about with this?

enter image description here

enter image description here

enter image description here

Upvotes: 0

Views: 65

Answers (1)

Grace Feng
Grace Feng

Reputation: 16652

The Visual Studio Emulator for Android is installed with Visual Studio 2015 when you select Visual C++ for Cross Platform Development features.

If you update your VS 2015 to Update 3, you can also see the option Microsoft Visual Studio Emulator for Android:

enter image description here

The emulator can be launched from within Visual Studio 2015 from

  • Apache Cordova projects
  • C++ Native Activity (Android) projects
  • Xamarin Android projects

For Android development, you also need to install the Android SDK. And it is also suggested to create your own emulator with google service, for the emulator installed with VS, Hyper-V should be enabled, and for self-created emulator with Google service, Hyper-V should be disabled. Please refer to Windows Installation and Visual Studio Android Emulator to configure your environment for Xamarin Android development.

Upvotes: 1

Related Questions