Skip to content Skip to sidebar Skip to footer

Android Emulator On Eclipse Not Working

I've been following the instructions found at http://developer.android.com/training/basics/firstapp/running-app.html to run the Hello World app on Eclipse's AVD, but the AVD does n

Solution 1:

OP of this thread has similar error message,

emulator: WARNING: Could not initialize OpenglES emulation, using software renderer

Hope it helps!

Solution 2:

Check 2 things:

  • That you are using 512MB of RAM (the emulator doesn't work properly with more)
  • Try turning 'Host GPU' off

Solution 3:

Try running emulator from the command line with GPU option and make sure that it is working or not.

-gpu off

Even if it result into the error, go to the eclipse, Right Click on the project and select run my projects as an "Android application". Emulator should start.

You can also give a try with enabling/disabling GPU emulation option for the selected emulator from the AVD manager.

To enable/disable GPU emulation :

Goto AVD manager -> select android virtual device -> click on Edit -> Hardware tab -> enable/disable GPU emulation.

Hope it will work.

Solution 4:

I got this error when trying to run an emulator with a higher resolution than I had my display set to.

Post a Comment for "Android Emulator On Eclipse Not Working"