3

After update SDK-Build-Tools to 22.6 and ADT-Plugin can't create AVD or launch any application via any emulator those which were previously created before updating.There was no error message has shown in console or in log-cat.So can't track the issue.

Here is the Screen shot. After clicking on OK button nothing happened.

enter image description here

Lucifer
  • 29,392
  • 25
  • 90
  • 143
Kaushik
  • 6,150
  • 5
  • 39
  • 54
  • 1
    Two Ways : (1) restart abd, restart eclipse ,If this doesnt work then (2) close the eclipse and go to your sdk folder, run AVD Manager from there and create new AVD from there. – Lucifer Mar 06 '14 at 05:44
  • @Kedarnath : i have already done that. From tomorrow i m trying with no success :( – Kaushik Mar 06 '14 at 05:46
  • This seems to be new problem, lots of users are posting same question. – Lucifer Mar 06 '14 at 05:47
  • API 10 is very buggy with AVDs. Set the RAM to 768. Even though it isn't realistic, the AVD needs it. Oh, and use the Intel Atom x86. – Rick Falck Mar 06 '14 at 05:47
  • I just updated to 22.6 and started my Nexus S API 10 AVD with 768 RAM and the Intel Atom image successfully. – Rick Falck Mar 06 '14 at 05:54
  • @RickFalck : i have tried as u suggested but nothing happened – Kaushik Mar 06 '14 at 06:00
  • possible duplicate of [Cannot create or edit Android Virtual Devices (AVD) from Eclipse, ADT 22.6](http://stackoverflow.com/questions/22190076/cannot-create-or-edit-android-virtual-devices-avd-from-eclipse-adt-22-6) – laalto Mar 09 '14 at 19:39
  • @Rick Falck: I tried with 22.6 and had the same problem. – RobH Mar 11 '14 at 22:58
  • @RobH : u can visit that link laalto provided – Kaushik Mar 14 '14 at 04:47

4 Answers4

5

This is a known issue, we'll have an update out with the fix shortly.

Xavier Ducrohet
  • 28,383
  • 5
  • 88
  • 64
  • 1
    Thank you for answer, Otherwise we were thinking it is problem at ourside. – Lucifer Mar 06 '14 at 05:57
  • 2
    Lots of users are facing this problem. Please do update your answer whenever you solve this issue. – Lucifer Mar 07 '14 at 13:01
  • 2
    Until this issue is fixed, can anyone recommend a site where an older version that works is available for download? – RobH Mar 11 '14 at 23:07
1

You can avoid doing all the reverting to older versions by using the command line;

For unix systems:

android list targets

Will list the available api targets you have

 android create avd -n <name> -t <targetID> [-<option> <value>] ...

Will create the avd, then you should be able to see the AVD in your AVD Manager in eclipse. You can check the documentation at http://developer.android.com/tools/devices/managing-avds-cmdline.html

stoyan
  • 166
  • 1
  • 3
0

Unfortunately in the latest SDK, Emulator isn't working that way. It's still a bug.

But don't worry. There is an alternative way to do it.
To start the emulator:
Go to Window-> Android SDK Manager-> Tools-> Manage AVDs
Then select any AVD of your choice and click start.

SDK Manager

enter image description here

enter image description here

enter image description here

enter image description here

Please comment for further questions.

Suraj Dubey
  • 536
  • 6
  • 11
0

If "Create Virtual Device" button in Android Studio UI is not working, there is probably an Android SDK or other parts missing, there is no popup showing it, but if you just installed AS, or cleared all SDK files, do the next thing:

File-Settings-Language & Frameworks-Android SDK-SDK Platforms, install SDK, add Android SDK Command-line Tools in SDK Tools tab.

And do not forget to add path to Project Structure

Nikita Shadkov
  • 372
  • 3
  • 11