Emulator not running

前端 未结 12 2387
误落风尘
误落风尘 2020-12-01 09:49

My AVD Emulator is not running after I changed my Hardisk to other MotherBoard i5 3GHz processor without re-installing OS.

OS: Ubuntu 10.10

my emulator is n

相关标签:
12条回答
  • 2020-12-01 09:58

    You will have to set all the environment variable path values again. and if you used the installer file to install the sdk you may require to install it again cause it has some dependencies with OS.

    0 讨论(0)
  • 2020-12-01 09:58

    Try this:

    1. Open AVD Manager
    2. Click on the JellyBelly AVD
    3. Click Edit
    4. Change some value in 'Hardware' and save it

    Try starting it and let us know how it goes

    0 讨论(0)
  • 2020-12-01 10:00
    Failed to create Context 0x3005
    emulator: Can't start OpenGLES renderer?
    

    generally this thing happens when your emulator size is out range compare to your OS Support GL drives .

    try to scale your emulator according to your screen size and monitor dpi .

    Hope it will help .

    0 讨论(0)
  • 2020-12-01 10:01

    You are probably missing the link with the GLES libraries for the emulator, make sure that in

    <Android SDK root>/tools/lib
    

    you have this .so files

    libEGL_translator.so    
    libGLES_CM_translator.so    
    libGLES_V2_translator.so    
    libOpenglRender.so
    

    you have to add this files to the global set of libraries for your OS, you can add libraries from a specific path doing just the following:

    • sudo gedit /etc/ld.so.conf.d/androidGL.conf
    • write only the path to libraries in this file, in your case <Android SDK root>/tools/lib, just a path, do not specify any library, all the libraries in that path will be automatically collected
    • save and close gedit
    • update the global set of libraries to add the new path with sudo ldconfig

    now re-try to run your avd.

    0 讨论(0)
  • 2020-12-01 10:02

    It is actually happen when you upgrade your ADT and SDK to the 20th version... That occurs with many people but the solution is you have to start "emulator-arm" instead of "emulator"... so may be it works... and for more detail you can refer http://code.google.com/p/android/issues/detail?id=34233 this link...

    0 讨论(0)
  • 2020-12-01 10:06

    I had the same problem

    Edit your AVD GUI settings. Hardware Section, select New. Hit the "Property" Dropdown Select "GPU Emulation" then "OK" Change "Gpu Emulation" to "YES" with the dropdown in Hardware Section.

    Save and try again

    0 讨论(0)
提交回复
热议问题