Reputation: 41648
After following the blog post on using the Visual Studio Emulator for Android from Android Studio, and starting the emulator, when I am prompted to choose a running emulator, nothing shows up on the list.
I'm running Windows 10 x64.
Upvotes: 10
Views: 12033
Reputation: 41648
Open an admin command prompt and enter the following; then restart the emulator.
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Android SDK Tools" /v Path /d %localappdata%\Android\sdk
Or update the registry manually:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node
.Android SDK Tools
.Path
. Set its value to the location of your Android SDK, which will be like C:\Users\YourName\AppData\Local\Android\sdk
.Upvotes: 42