android emulator in ADT plugin not running

前端 未结 5 1480
轮回少年
轮回少年 2020-12-15 11:01

I\'m using Eclipse ADT plugin for android development. I came across some problems and I remove all my existing emulators

相关标签:
5条回答
  • 2020-12-15 11:27

    Maybe there is something wrong with your AVD properties,change it to where it compatible to your android projects,that's all.

    0 讨论(0)
  • 2020-12-15 11:33

    As an extension to Jimi's answer, the easiest way to restart adb is to type the following command into a console window:

    adb kill-server
    

    If you get an error about adb command not found, then you can either add the android system tools path to your PATH key in environment variables, or just navigate to the tools directory and execute the command from there:

    ./AndroidSdk/platform-tools
    

    After killing the server, make sure it's restarted correctly by typing:

    adb devices
    

    Which should show you a list of connected devices.

    After restarting adb, the device manager should automatically refresh, otherwise try restarting device manager or selecting the refresh window button.

    0 讨论(0)
  • 2020-12-15 11:44

    I would suggest you to use the blue stacks as your emulator.. its really faster and efficient.. If you are using the Blue Stacks, first start your blue stacks and then eclipse or whatever the IDE you are using...

    you can also have a look here

    http://infopulseukraine.com/eng/blog/Software-Development/Mobile/Bluestacks_Eclipse/

    0 讨论(0)
  • 2020-12-15 11:50

    In this case, I was able to run an emulator with Android 2.2. But unable to run an emulator in Android 4.2 which is my applications target. So i just removed Android 4.2 (API 17) and just reinstall it. Later on emulator starts fine. Thanks!!

    0 讨论(0)
  • 2020-12-15 11:54

    To solve this, go to Window --> Open Perspective --> DDMS. In the DDMS View, look for devices on the left of your screen. You should see a bar having about 12 icons. Click on the down arrow and click the "reset ADB". It should work afterwards.

    0 讨论(0)
提交回复
热议问题