Reputation: 10587
I am using Macbook Pro 2015. I installed Xamarin Studio and Android SDK
I created AVD like this
When I start my AVD, it never moves further than screen showing "android" on it, even 1/2 hour after starting it
adb devices command shows:
adb devices
List of devices attached
emulator-5554 device
Is there something I am doing wrong in setting my emulator. I am aware that android emulators are slow but it wasn't this slow. I am also aware of HAXM but I found instruction to install them bit to flaky and I dont want to take a risk. I also know about Genimotion but that is not an option for me.
Is there another way to speed up the android emulator?
Upvotes: 1
Views: 3958
Reputation: 4829
make sure that Android version of your Target Framework is the same of smaller than Android version of your emulator you have chosen to build.
Upvotes: 0
Reputation: 96
I had the same problem and I used an alternative solution to fix this problem.
You can use these settings:
Now you can connect Xamarin to the VM.
Find the path to your Android sdk-platform-tools
Open a terminal in your Host and locate sdk-platform-tools and type ./adb connect
Now you can run your code from Xamarin to the virtual machine, which is really fast compared to simulation from Xamarin.
Upvotes: 1