Priety
Priety

Reputation: 308

AVD not getting created

enter image description hereI have a strange problem. I installed Eclipse juno on my system and even installed the SDK manager. But when am trying to run the app no AVD is showing up. When am trying to configure the AVD by going to Windows-> AVD Manager and by clicking on the New button a dailog is opening up AVD name, memory options and internal memory. But for whatever values i give, the ok button is disabled and hence am not able to create a AVD to launch the application.

I tried succeding by modifying this block in androidManifest file.

 <uses-sdk
    android:minSdkVersion="4"
    android:targetSdkVersion="8" />

Upvotes: 0

Views: 3211

Answers (2)

Swayam
Swayam

Reputation: 16364

Your system seems to be missing the system image required to create the AVD.

Go to Eclipse -> Window -> Android SDK Manager

In your desired section of API level, select ARM EABI v7a System Image and download it.

Upvotes: 1

varevarao
varevarao

Reputation: 2186

You notice how it says beside CPU/ABI that there's no system image for the current target? That's the reason for the Ok option being washed out. Try updating your SDK if you want to use this AVD, and install all available updates. Check this link for what that'll look like.

Otherwise just lower the SDK level (the target option) and try various levels till you find one for which it works (that is, for which you have the system image installed).

Upvotes: 3

Related Questions