Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Build - Emulator stuck on android boot logo

I was experimenting with the Android build system for couple of days. I could download and build the system successfully as described here. I built the master branch.

Instead of running emulator command alone I used the command with the parameters given here. The emulator window launched and shown the "android" logo, but it stuck there. I left it for almost 1 hour but it looked like entered in to some kind of boot loop. When checked the logcat I could find some "connection failed" logs like below.

I/PackageManager(  283): /system/app/Launcher2.apk changed; collecting certs
D/dalvikvm(  283): GC_CONCURRENT freed 460K, 36% free 5704K/8808K, paused 15ms+24ms, total 170ms
I/Installer(  283): connecting...
I/Installer(  283): disconnecting...
E/Installer(  283): connection failed
I/PackageManager(  283): /system/app/LiveWallpapers.apk changed; collecting certs
D/dalvikvm(  283): GC_CONCURRENT freed 1182K, 43% free 5049K/8808K, paused 6ms+9ms, total 125ms
I/Installer(  283): connecting...
I/Installer(  283): disconnecting...
E/Installer(  283): connection failed
I/PackageManager(  283): /system/app/LiveWallpapersPicker.apk changed; collecting certs
I/Installer(  283): connecting...
I/Installer(  283): disconnecting...
E/Installer(  283): connection failed
I/PackageManager(  283): /system/app/MagicSmokeWallpapers.apk changed; collecting certs
I/Installer(  283): connecting...
I/Installer(  283): disconnecting...
E/Installer(  283): connection failed
I/PackageManager(  283): /system/app/MediaProvider.apk changed; collecting certs
I/Installer(  283): connecting...
I/Installer(  283): disconnecting...
E/Installer(  283): connection failed

These messages are showing for almost all APK and continues in a loop. The system have internet access but somehow emulator fails to connect to network I think.

Any possible workarounds?

Update:30/09 Running the emulator command soon after the build, didn't work either. I's not showing the android logo at all.

like image 750
gnuanu Avatar asked Sep 26 '13 09:09

gnuanu


1 Answers

set your ram size to 512 mb and start the emulator

like image 179
Hybrid Developer Avatar answered Oct 27 '22 19:10

Hybrid Developer