Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Solve " Could not load OpenGLES emulation library: Could not load DLL!" for Android Emulator

There was a problem starting Android Emulator.The Error I got while starting the Android Emulator by executing the command emulator-arm @AVD_name is

Could not load OpenGLES emulation library:Could not load DLL!.

Could anyone help me to solve this problem.

like image 321
justin Avatar asked Dec 09 '14 11:12

justin


1 Answers

At last I got how to start the Android Emulator.I think the problem in windows is that the android emulator while executing points to the sdk\tools\ directory instead of sdk\tools\lib directory as said in Android-open project Issue Tracker.

The things you have to do is:

  1. First copy all the files starting with lib and having the extension dll from the sdl\tools\lib directory into the sdk\tools\ directory.
  2. If you still can't get the emulator working after copying also place the -gpu off option in the command line while executing the command emulator-arm @AVD_name.

After doing these two things the Android Emulator started for me.

like image 94
justin Avatar answered Sep 28 '22 01:09

justin