Waiting for HOME ('android.process.acore') to be launched

后端 未结 17 2634
陌清茗
陌清茗 2020-12-07 14:14

I tried working the Hello World application and the emulator freezes after it flashes the Android start screen. The home page is not shown. The last display on the console i

相关标签:
17条回答
  • 2020-12-07 14:55

    I created a new device. Deleted the previous one.

    0 讨论(0)
  • 2020-12-07 14:56

    What worked for me was to delete the AVD from the AVD manager and create a new one. Then go to
    Run >Run Configurations, select the target tab and choose the new AVD.

    0 讨论(0)
  • 2020-12-07 14:58

    Options:

    • Click on the HOME Button on the Emulator. Wait for may be 2 seconds.... This always works for me!!!

    or

    • Go with Shreya's suggestion (one with most suggestions and edited by Gray).
    0 讨论(0)
  • 2020-12-07 15:00

    None of these solutions worked for me. Instead, what worked was to go to a command line tool (or terminal in Mac), CD into the SDK/platform-tools directory, and then run this:

    adb kill-server
    

    then run this:

    adb start-server
    

    After I did this everything worked again. Why? Who knows.

    On my MAC the path to the platform-tools folder was $HOME/Installations/adt-bundle-mac-x86_64-20130522/sdk/platform-tools It will probably be somewhere else on your machine.

    I also found this page that presents some helpful steps:

    http://android.okhelp.cz/android-emulator-wont-run-application-started-from-eclipse/

    0 讨论(0)
  • 2020-12-07 15:02

    I had only 12 Mb for the SD Card in the AVD device.

    Increasing it to 2 Gb solved the issue.

    0 讨论(0)
  • 2020-12-07 15:04

    Following steps worked for me: 1. Goto Project -> Clean. 2. Delete your previous AVD and create a new one.

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