Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android 2.3 emulator blank screen after build

I'm trying to build Android 2.3 (Gingerbread) from scratch on my Ubuntu 10.10 machine.

I've followed all the steps here: http://source.android.com/source/building.html Got no build errors.

But for some reason the emulator boots and the screen stays blank (I did try leaving it for a few hours even). I built 2.2 a few months back on this same machine without issue.

Update: As you can see from the image - adb detects the emulator briefly but when I run it again about 30 seconds later it does not detect it at all.

What could I have missed?

enter image description here

like image 270
brendan Avatar asked Nov 03 '11 15:11

brendan


1 Answers

According to a google employee in this thread, your building tools may be out of date. Check out the link for more information, but his recommendation for building it is:

repo forall sdk external/qemu -c git checkout aosp/tools_r12
# build, possibly a clean build
emulator -kernel prebuilt/android-arm/kernel/kernel-qemu-armv7 

Hope that helps!

like image 55
MJD Avatar answered Sep 27 '22 17:09

MJD