Si8
Si8

Reputation: 9225

Unable to create AVD in Eclipse

enter image description here

I tried to play around with the setting and looked through all the options but the "OK" button isn't enabled for me to complete the process. Any idea?

Update: The OK button is now enabled but after filling out everything and I press the OK, I receive a different error in the console:

[2013-07-22 11:04:45 - SDK Manager] Error: null]

Access issue: Android SDK AVD Error:null

Upvotes: 0

Views: 894

Answers (3)

David N
David N

Reputation: 519

Change the API target or install compatible system image. Use SDK manager and select android 4.0 api 14 :

http://developer.android.com/about/versions/android-4.0.html

Upvotes: 1

MSA
MSA

Reputation: 2482

You have a problem whit RAM, set 512 and VM Heap to 16. And the android emulator will work. The virtualization in Windows doesn't support 1024M RAM.

Or you cand change the config file:

 avd.ini.encoding=ISO-8859-1
 hw.sdCard=no
 hw.device.manufacturer=Google
 hw.mainKeys=yes
 hw.lcd.density=320
 hw.accelerometer=yes
 hw.dPad=yes
 hw.cpu.arch=arm
 skin.name=720x1280
 abi.type=armeabi
 hw.device.hash=-708107041
 hw.trackBall=no
 hw.device.name=Galaxy Nexus
 hw.camera.back=emulated
 hw.sensors.proximity=yes
 hw.battery=yes
 disk.dataPartition.size=200M
 image.sysdir.1=platforms\android-10\images\
 hw.audioInput=yes
 hw.sensors.orientation=yes
 hw.camera.front=emulated
 hw.gps=yes
 skin.dynamic=yes
 skin.path=720x1280
 hw.keyboard=yes
 vm.heapSize=128
 hw.ramSize=1024mb

Cheers,

Upvotes: 1

UsmanAzam
UsmanAzam

Reputation: 549

CPU/ABI combobox is greyed out. Looks like you don't have system image required for this configuration.

Upvotes: 1

Related Questions