Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Emulator Does Not Start

I have installed all of the necessary parts and the ADT plugin for Eclipse. When I create an Android virtual device and start it, nothing appears. I get the box where the green status bar shows up and says 'Starting emulator for AVD'. However, nothing appears afterwards. No logs in the Console either....does anyone have any suggestions? thanks.

like image 757
dido Avatar asked Oct 09 '12 14:10

dido


People also ask

Why Android Emulator is not opening?

If the Android Emulator does not start properly, this problem is often caused by problems with HAXM. HAXM issues are often the result of conflicts with other virtualization technologies, incorrect settings, or an out-of-date HAXM driver. Try reinstalling the HAXM driver, using the steps detailed in Installing HAXM.

Why emulator is not opening?

If the Android Emulator does not start properly, this problem is often related to discovering that your application's minimum SDK is higher than your emulator SDK. If that's not the case, make sure you have HAXM installer on your SDK Manager.

Why AVD Manager is not working?

SDK Build Tools are not installed If it fails then you may have to install it again. You look at the build tab at the bottom of the screen, it will display the error message and option to install the Build tools. Install it and you should be able to see the AVD Manager. Another way is to go to the SDK Manager.


1 Answers

You will have more chances to debug the issue if you start emulator with “emulator” command:

emulator @avd-name

“avd-name” is your emulator image name as you created it.

And if you don't happen to have “emulator” command, try adding “android-sdk-linux_x86/tools/” (where android-sdk-linux_x86 is your android SDK installation directory) to your PATH.

like image 90
user1410657 Avatar answered Sep 18 '22 13:09

user1410657