Cannot start Emulator in android studio 2.0

前端 未结 14 2105
渐次进展
渐次进展 2020-12-02 05:11

I just upgraded my android studio from 1.5 to 2.0.And now I am facing some weird bug when I try to start Emulator. I use Ubuntu 15.10 OS

Android monitor returns this

相关标签:
14条回答
  • 2020-12-02 05:34
    cd ~/Android/Sdk/emulator/lib64/libstdc++ 
    mv libstdc++.so.6 libstdc++.so.6.bak
    ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6 libstdc++.so.6
    

    Try it!

    0 讨论(0)
  • 2020-12-02 05:34

    All of the above answers did not work for me as "Android Emulator" was not installed with standard installation of Android Studio. Make sure you have installed it and then try above answers.

    0 讨论(0)
  • 2020-12-02 05:38

    In an extraordinary situation your KVM resources might be busy because of another running VirtualBox VMs.

    (I've experienced this issue).

    To overcome this issue I used Genymotion instead of Android Emulator.

    Then I could run Genymotion together with other VirtualBox VMs.

    0 讨论(0)
  • 2020-12-02 05:39

    I had the same problem and the solution didn't work for me.

    The solution that work for me was telling to Android Studio that use the system libraries instead of the built-in by editing $HOME/.profile and adding the next line: export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1, and then re-log.

    0 讨论(0)
  • 2020-12-02 05:41

    Create a new AVD, or edit an existing one and change the Emulated Performance Graphics from Automatic to Software

    0 讨论(0)
  • 2020-12-02 05:42

    Fix on Ubuntu 16 LTS

    1.Install lib64stdc++6

    sudo apt-get install lib64stdc++6:i386  
    

    2.Install mesa-demos

    sudo apt-get install mesa-utils
    
    0 讨论(0)
提交回复
热议问题