Reputation: 165
Since the last update of Android Studio (0.8.14) on my Mac OSX, AVD Manager is not able to create AVD anymore.
It simply crashes during the process. Any idea ?
Upvotes: 3
Views: 2106
Reputation: 5818
This is the terminal command that worked for me:
android create avd -n custom_avd -t 1 --abi default/x86
You can find the correct ABI (default/x86 in my case) using this command:
android list targets
Upvotes: 0
Reputation: 165
Using a command line to create a new AVD did the trick.
android create avd -n -t [- ] ...
http://developer.android.com/tools/devices/managing-avds-cmdline.html
Upvotes: 1