Android Studio AVD Manager crash during AVD creation

Since the last Android Studio update (0.8.14) on my Mac OSX, AVD Manager can no longer create AVDs.

AVD crash

It just crashes during the process. Any idea?

+3


source to share


2 answers


Using the 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

+1


source


This is the terminal command that worked for me:

android create avd -n custom_avd -t 1 --abi default/x86

      



In my case, you can find the correct ABI ( default / x 86 ) with this command:

android list targets

      

0


source







All Articles