I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

Even if it starts and loads the home screen, it is very sluggish. I have tried the Eclipse IDE in Galileos, and Ganymede.

link|improve this question
37  
The emulator is really slow. On my 3.6Ghz Core 2 Duo it also takes forever... – Simon H. Oct 12 '09 at 11:54
12  
Intel Core 2 Duo @ 2GHz, 4GB RAM - I'm typing this message while waiting for the emulator to run an application I started 15mins ago... I am not sure if it'll run at all. – Pawel Krakowiak Nov 20 '09 at 18:54
13  
the greatest part is when you start using OpenGL in your app. You'll get 4 or 5 fps from the emulator MAX, even when it runs at 20fps smoothly on the device... – Ben Gotow Jan 8 '10 at 4:39
11  
A celeron processor with just over a gig of ram is not a very powerful setup, presumably while also running eclipse which can use a huge amount of memory. The emulator does have some speed issues, but your machine isn't helping. – jsoverson Jan 12 '10 at 21:12
5  
See note below on saving snapshots. As for general slowness, keep in mind the emulator is running a large amount of Java code, that's compiling to ARM, that's calling into a software emulated graphics device, all emulated on an x86 desktop OS. I love how fast the iPhone emulator is, but that's because you're compiling your app to x86. Android lets you run it (slowly) exactly how it will run on the device, including all your JNI and ARM NEON. That said, would love a fast pure java 'emulation' environment with the Dalvik VM retargeted to x86, for most people's needs. – jd. May 29 '11 at 8:40
show 9 more comments
feedback

32 Answers

1 2

Android Development Tools (ADT) 9.0.0 (or later) has a feature that allows you to save state of the AVD (emulator) and you can start your emulator instantly. You have to enable this feature while creating a new AVD or you can just create it later by editing the AVD.

Also I have increased the Device RAM Size to 1024 which results in very fast emulator.

Refer the given below screenshots for more information.

Creating a new AVD with the save snapshot feature.

Android emulator with save snapshot feature.

Launching the emulator from the snapshot.

Launching the emulator from the snapshot.

link|improve this answer
4  
When you update and existing device, wipe the user data on the first startup from snapshot – Mark Bakker May 10 '11 at 11:13
4  
I set the AVD as this, but seems still slow when I reboot the AVD, why? – zhongshu Jul 16 '11 at 13:01
1  
@zhongshu: When you reboot AVD then it starts from the beginning state rather than the saved snapshot. So probably it will take more time. – Vikas Patidar Jul 22 '11 at 6:59
2  
@Peter Ehrlich : Just go to the Window > Android SDK and AVD Manager and select AVD you want to launch from the list and then click on the Start button in the right pane. It will open the same you want. – Vikas Patidar Jan 2 at 7:10
show 4 more comments
feedback

Try Android x86. It works much more faster than the Google Android emulator. Follow these steps:

  1. Install VirtualBox.
  2. Download the ISO file that you need
  3. Create a virtual machine as Linux 2.6/Other Linux, 512 Mb RAM, HD 2 GB. Network: PCnet-Fast III, attached to NAT. You can also use a bridged adapter, but you need a DHCP server in your environment.
  4. Install Android x86 on the emulator, run it.
  5. Press Alt+F1, type netcfg, remember the IP address, press Alt+F7.
  6. Run cmd on your Windows XP system, change the directory to your Android tools directory, type adb connect <virtual_machine_IP>
  7. Start Eclipse, open the ADT plugin, find the device, and enjoy!
link|improve this answer
2  
so I connected. How do I get the screen to be vertical? I also don't see the phone hardware buttons anywhere. – Alex May 20 '11 at 1:54
2  
I haven't found an opportunity to change screen orientation. groups.google.com/group/android-x86/browse_thread/thread/… they say that the orientation is probably hardcoded somewhere, and I can't find more information. Let me know if you solve the problem. – Pehat May 20 '11 at 12:23
3  
It is A LOT FASTER, almost PERFECT – LifeH2O May 22 '11 at 12:11
4  
4  
Note that if you are using anything that's specific to ARM (like Mono for Android, for instance), it won't work on Android x86. – mgroves Sep 7 '11 at 17:31
show 13 more comments
feedback

The startup of the emulator is very slow. The good thing is that you only need to start the emulator once. If the emulator is already running and you run your app again, the emulator reinstalls the app relatively quickly. Of course, if you want to know how fast it will run on a phone, it is best to test it on a real phone.

link|improve this answer
8  
taking a couple hours to start on a 3ghz cpu is hardly "good to just wait once". – gcb Oct 23 '10 at 10:21
13  
If it takes a couple of hours, there is probably something else wrong. It only takes a couple of minutes for me. – Jay Askren Oct 25 '10 at 12:59
14  
As long as you consider "loads the app relatively quickly" something in the range of 2 to 3 minutes. Uuuugh. Trying to do any sort of iterative development, just loading the apk onto the already running emulator is brutal. Inexcusable, too, emulator or not: I can load the app over wifi onto the real device in a fraction of the time and the PC I'm running is orders of magnitude faster than the real device, more than enough to make up for any sane emulator. I'm running a 3.4Ghz quadcore i7 with 18GB of RAM. There's no way it should be this bad. – user286101 Mar 26 '11 at 8:12
2  
@user286101: loading a new apk into an already running emulator takes no more than 10 seconds in my old laptop (1.6Ghz dual core, 1GB RAM), the only problem is I often forgot to leave the emulator running so I had to go through the slow rebooting process (which takes 3-5 minutes). – Lie Ryan Aug 12 '11 at 14:49
show 3 more comments
feedback

I've noticed that emulator starts much faster if there's no Dalvik Debug Monitor Server (DDMS) connected. So if you start the emulator from Virtual Device Manager "SDK Setup.exe" and Eclipse is not started, the emulator works faster.

If you start the emulator from Eclipse - DDMS is there, so sometimes emulator is extremely slow, but sometimes it's faster.

link|improve this answer
4  
what's DDMS? – Shekhar Jun 10 '11 at 5:08
1  
@Shekhar: DDMS = Dalvik Debug Monitor Server – Lie Ryan Aug 12 '11 at 14:50
show 2 more comments
feedback

It is not a problem with your environment, it is just that the emulator is very slow.

Practically I use a real phone to do my tests. It is faster and tests are more realistic. But if you want to test your application on a lot of different Android versions and don't want to buy several phones, you will have to use the emulator from time to time.

link|improve this answer
2  
i would have thought, as many people here have said, that it would be much faster than a real phone since generally (i hope) peoples development machines are far superior in speed and memory to their handsets. – dylan murphy Jun 9 '11 at 20:13
8  
@hooray: Ah, but the emulator is emulating the architecture that the Android OS is compiled for - something that a PC is generally not suited for. The OS runs faster on the phone because the OS is compiled for the hardware architecture in the phone. – George Edison Jun 29 '11 at 19:29
3  
@George. The emulator can be fast if they want it to be. It is slow because they can't be bothered. since faster emulator = lower phone sales. – Pacerier Oct 27 '11 at 12:09
show 1 more comment
feedback

You can create emulator.bat with follow command to start the emulator. It will start faster.

emulator.exe -cpu-delay 0 -no-boot-anim -avd avd

or on Unix (Mac or Linux flavors):

emulator -cpu-delay 0 -no-boot-anim -avd <avd name>
link|improve this answer
show 2 more comments
feedback

The emulator seems to slow itself down when idle. This is made apparent by rapidly mousing over the keys on the side and observing the light-up responses. As a workaround, I pass -icount auto to qemu when starting the emulator. You can make a batch file called my_avd.bat to do it for you:

emulator @my_avd -no-boot-anim -qemu -icount auto
  • @foo -- launch a virtual device named 'foo'
  • -no-boot-anim -- disable animation for faster boot
  • -qemu args... -- pass arguments to qemu
  • -icount [N|auto] -- enable virtual instruction counter with 2^N clock ticks per instruction

This made animations buttery smooth and sped up adb install tenfold.

link|improve this answer
show 2 more comments
feedback

To add further information to this.

I have recently upgraded my Ubuntu installation to Lucid Ubuntu 10.04 LTS which in turn updated my Java version to:

Java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) 64-Bit Server VM (build 16.3-b01, mixed mode)

And now the emulator (although takes a while to start) seems to be running faster than previously.

It might be worth people upgrading their JVM.

link|improve this answer
1  
I can't see why the emulator speed should depend on the Java version. The emulator is not written in Java and does not run on the JVM. – Lena Schimmel Nov 1 '11 at 19:56
show 2 more comments
feedback

The current (May 2011) version of the emulator is slow particularly with Android 3.0 (Honeycomb) primarily because the emulator does not support hardware GL -- this means that the GL code gets translated into software (ARM software, in fact) which then gets emulated in software in QEMU. This is crazy-slow. They're working on this problem and have it partially solved, but not with any sort of release quality.

Check out the video Google I/O 2011: Android Development Tools to see it in action -- jump to about 44 minutes.

link|improve this answer
feedback

Try to disable your antivirus. Maybe it will make emulator a little bit faster.

link|improve this answer
3  
I found this to be true as well -- I removed AVG Free and installed MS Security Essentials, and the emulator starts noticeably faster. YMMV. – Guy Starbuck Mar 19 '10 at 20:01
2  
@Guy Starbuck: Yes MS Security Essentials is free, less resource hungry and quite good compared to others that's why emulator runs fast. :) – Vikas Patidar Mar 14 '11 at 12:35
show 1 more comment
feedback

Android emulator release 9 has new "snapshot" feature. You can save state of emulator (make image of emulator) and avoid booting when you start the emulator.

link|improve this answer
feedback

As of Revision 17 of Android SDK Tools, the emulator can use graphic aceleration and CPU provided extensions for better efficiency . The requisites and full configuration and user notes are at:

http://developer.android.com/guide/developing/devices/emulator.html#acceleration

for enabling gpu aceleration, run the emulator from the command line or add "-gpu on" to the additional emulator ommand line options in the avd config.

emulator -avd <avd_name> -gpu on

for using the cpu machine extensions, you have to install the driver (caution because it can conflict with existing virtualbox or vmware drivers). Once it's installed it will be used automatically whenever you use an x86-based AVD.

link|improve this answer
show 1 more comment
feedback

You can review the emulator issues on the Google I/O 2011: Android Development Tools talk, starting a 0:40:20.

The emulator runs slowly because the complete Android environment is running on emulated hardware and the instructions are executed on a emulated ARM processor as well.

The main choking point is rendering, since it's not running on any dedicated hardware but it's actually being performed through software rendering. Lowering the screen size will drastically improve emulator performance. Getting more/faster memory isn't going to help.

They've mentioned, at the time, that they're developing an interface that would allow the emulator to pipe certain instructions through the host hardware, so eventually you'll be able to leverage emulator performances with the raw power of desktop hardware.

link|improve this answer
feedback

I installed LauncherPro APK from their website and my emulator got at least twice as fast. The system is Debian 6.0 (squeeze).

link|improve this answer
show 1 more comment
feedback

After developing for a while, my emulator became brutally slow. I chose wipe user data and it was much much better. I am guessing that it takes time to load up each apk you've deployed.

link|improve this answer
feedback

I had intermittent slow emulator (SDK v8.0) load times, up to 3 minutes on Intel Core i7 920 2.67GHz CPU running on Xubuntu 10.04 VirtualBox 3.2.12 guest with Eclipse (3.6.1) loaded. I changed the VBox guest memory from 1024 MB to 2048 MB and from that point on never experienced the slowness again (load times consistent at 33 seconds, CPU load consistent at 20%). Both Eclipse and the emulator are memory hogs.

link|improve this answer
feedback

I noticed that the my emulator (eclipse plugin) was significantly slowed by my nVidia graphics card anti aliasing settings. Removing 2x anti aliasing from the graphics menu and changing it to application controlled made it more responsive. it is still slow, but better than it used to be.

link|improve this answer
feedback

See Running Android Apps on Linux - Booting the Emulator Quickly for step by step instructions on setting up a snapshot that will boot in just a few seconds.

link|improve this answer
feedback

The older Android versions run a lot faster. When I'm on my netbook, I use Android 1.5 (API level 3). There are a couple of drawbacks, though--your apps need to support the older platforms (obviously), and ndk-gdb requires running Android 2.2 (API level 8) or higher. But regularly testing apps against older platforms is a good idea anyway.

link|improve this answer
feedback

The option -cpu-delay <delay> described in Emulator Startup Options can help.

link|improve this answer
10  
Anyone tried -1 just for fun? – TomA Mar 21 '11 at 15:38
show 2 more comments
feedback

Android SDK rev. 17 supports Virtual Machine Acceleration using AMD and Intel virtualization technologies.

This feature can improve the emulator performance a lot!

See the following section in the Android emulator documentation for more details: Configuring Virtual Machine Acceleration

Don't forget to install the appropriate driver for your operating system:

After you have installed the drivers and downloaded an Android X86 system image (as described in the documentation) you should be able to create a new AVD using the x86 image:

For example:

  • Target: Intel Atom x86 System Image - API Level 10
  • CPU/ABI: Intel Atom (x86)
link|improve this answer
feedback

On a 3.4 GHz quad core 6 GB of RAM, Windows 7, the emulator was unusably slow! I downloaded Launcher-Pro.apk through the emulator, installed it and set it as the default launcher. It doubled my emulation speed! The screens load much smoother and faster. It doesn't seem to download in 2.1 or 2.2, only in 2.0.

link|improve this answer
feedback

You need more memory.

Here's why I say that:

I'm using VirtualBox on Windows to run Ubuntu 10.10 as a guest. I installed Eclipse and the Android SDK on the VM. My physical box has 4GB of memory, but when I first configured the Ubuntu virtual machine, I only gave it 1GB. The emulator took about 15 minutes to launch. Then, I changed my configuration to give the VM 2GB and the emulator was running in less than a minute.

link|improve this answer
feedback

I've similar issues on a Mac. What I did;

  • 1) on the emulator, settings-display -> disable screen orientation
  • 2) on Eclipse, emulator startup options -> -cpu-delay 100

Those had some effect in lowering CPU use (not it is around 40-60%), not ultimate solution. But again, the CPU use is NOT >100% anymore!

link|improve this answer
feedback

I tried booting the emulator from Eclipse (Indigo and Android 1.5, no Snapshot) and after 45 minutes I stopped it, because nothing had happened.

Statistics: Phenom Quad @2.6 MHz with 4 GB DDR2 Corsair Dominator @800 MHz. The AVD is on an SSD drive and the emulator on a 7200 RPM HDD.

I started the emulator manually with the -no-boot-anim option and it loaded in 30 seconds. :)

In CMD, navigate to folder where the emulator.exe file is and type

emulator.exe @<YourAVDFromEclipse> -no-boot-anim

The emulator.exe file is located in the Android SDK folder under Tools.

In Windows, you can find the the Android Virtual Device(AVD) under C:\Users\<NAME>\.android\avd.

The projects run from inside Eclipse, targeting the AVD you booted, show up just nicely :D

link|improve this answer
show 1 more comment
feedback

Android ADT 18 now includes a (beta) GPU enabled option (simply enable the GPU acceleration from your AVD properties). It makes a huge difference and even ICS feels relatively comfortable now.

link|improve this answer
feedback

I switched from using the OpenJDK (on Ubuntu 10.04) to Sun Java and now (although still very slow) the emulator at least gets going. On the OpenJDK the emulator was hanging on the boot process (showing 'android' text in the mobile window) and never go to the mobile display.

On Fedora I was able to use OpenJDK without issue. Slow though

link|improve this answer
feedback

Try scaling down the emulator, it makes it a bit faster, even if it doesn't it really feels faster.

link|improve this answer
feedback

I just took the default Android 3.1, and it was very slow, but since I realised my code was Android 2.3.3 compatible I switched to that. It's about 50% quicker and also the emulator looks more like my phone, and has a keyboard permanently displayed so that it is easier to use.

link|improve this answer
feedback

In AVD Manager select the VD and click edit, set the resolution to little as you are able to read the text on VD.

I use 800x600 pixels, RAM set to 512 MB, and it works like a charm without high use of CPU time.

link|improve this answer
feedback
1 2

protected by Bill the Lizard Mar 12 '11 at 4:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.