0

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

Community
  • 1
  • 1
Si8
  • 9,141
  • 22
  • 109
  • 221
  • 1
    You have to specify all the options here, this includes the Front and Back camera etc. – g00dy Jul 22 '13 at 14:38
  • 3
    You have no system images installed...possible duplicate http://stackoverflow.com/questions/13488419/unable-to-create-android-virtual-device – Robin Chander Jul 22 '13 at 14:39
  • @RobinChander Thanks! Why don't you answer it so I can accept it :) – Si8 Jul 22 '13 at 14:43

3 Answers3

1

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

UsmanAzam
  • 539
  • 4
  • 15
  • I downloaded the package but now the OK button is enabled but When I click OK, Eclipse says the following error in console: `[2013-07-22 11:04:45 - SDK Manager] Error: null]` – Si8 Jul 22 '13 at 15:06
  • Restart your eclipse IDE. – UsmanAzam Jul 22 '13 at 15:16
1

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,

MSA
  • 2,502
  • 2
  • 22
  • 35
  • I downloaded the package but now the OK button is enabled but When I click OK, Eclipse says the following error in console: `[2013-07-22 11:04:45 - SDK Manager] Error: null]` – Si8 Jul 22 '13 at 15:07
1

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

David N
  • 509
  • 4
  • 12
  • I downloaded the package but now the OK button is enabled but When I click OK, Eclipse says the following error in console: `[2013-07-22 11:04:45 - SDK Manager] Error: null]` – Si8 Jul 22 '13 at 15:07
  • Try to select a different CPU if you can and set the RAM size to 512 – David N Jul 22 '13 at 15:18
  • I was able to create the AVD but I do not see it in the list to emulate :( – Si8 Jul 22 '13 at 15:32