Android emulator does not start

I installed all the necessary parts and the ADT plugin for Eclipse. When I create an Android virtual device and launch it, nothing appears. I get a window that displays a green status indicator and says "Run emulator for AVD". However, nothing appears after this. There are no logs in the console. Anyone have any suggestions? thanks.

+7
source share
6 answers

You will have a better chance of debugging the problem if you run the emulator with the "emulator" command:

emulator @avd-name 

"avd-name" is your name for the emulator image when you create it.

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

+6
source

I had the same problem, and I realized that this is because when you install the skin, by default it is installed in WVGA800, but for some reason it only works if it is installed on HVGA .

+4
source

I found that the problem is in the graphics card. The emulator may not recognize that your graphics card will try again with another.

+1
source

For Ubuntu (I use Xubuntu):

Mine Android Virtual Devices did not start because I used the NVIDIA drivers for ubuntu. After changing the drivers in Nouveau, it booted up after 15 seconds.

Go to "Settings Manager" โ†’ Software and updated โ†’ Additional drivers selected: "Using X.org x server - Nouveau display driver (open source)"

NVIDIA F # U http://www.youtube.com/watch?v=55XVnJ_0qhg

+1
source

I had a similar problem. Windows 7. ADT Bundle 64-bit. I logged on to my computer with Active Directory (corporate) credentials. The emulator did not start at all, after I tried many different things. I switched to the local administrator login and it worked.

This is not necessarily a solution. I would rather learn how to make it work with my AD account.

0
source

This is also related to the emulator screen size.

I created a new AVD with a 768x1280 display. It starts off fine. Then I replaced the values โ€‹โ€‹of lcd.height , lcd.width , skin.name , skin.path in the configuration files for the 1080x1920 view. After that, the emulator no longer starts.

I run emulators inside an Xvnc session with a resolution of 1360x768 pixels, but it also does not work in an Xvnc session with a resolution of 3000x2000 pixels.

0
source

All Articles