Android Studio 2.3 Ubuntu 16.10 emulator do not start

后端 未结 6 1385
一向
一向 2020-12-12 16:24

Using Android Studio 2.3 and Ubuntu 16.10 the emulator did not start. Message: waiting emulator come on line. How can I configure to emulator start?

6条回答
  •  感情败类
    2020-12-12 17:19

    Source: https://cialu.net/solve-android-studio-avd-issue-with-ubuntu-16-10/

    sudo apt-get install lib64stdc++6:i386

    sudo apt-get install mesa-utils

    (look for the path of the sdk)

    cd YOURPATH/Android/Sdk/emulator/lib64

    mv libstdc++/ libstdc++.bak

    ln -s /usr/lib64/libstdc++.so.6 libstdc++

    Finally, run your application again using emulator.

提交回复
热议问题