Android emulator启动模拟器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android emulator启动模拟器相关的知识,希望对你有一定的参考价值。

手机不再身边,准备利用下模拟器调试下代码。输入emulator -avd Nexus_6P_API_O(avd 的名字可以通过命令avdmanager list avd获得然后出现如下错误:

[140736745632704]:ERROR:./android/qt/qt_setup.cpp:28:Qt library not found at ../emulator/lib64/qt/lib
Could not launch ‘../emulator/qemu/darwin-x86_64/qemu-system-i386‘: No such file or directory

接着就去sdk目录下找这两个名字的文件,最后在sdk/emulator 这个文件夹中找到,而通过which emulator命令查到emulator居然在sdk/tools.由于更新后sdk后,google更改了sdk文件夹导致的。解决方法如下:

  1. 去sdk/emulator  文件夹下运行emulator命令启动avd
  2. 更改PATH
  3. 由
    export PATH="$PATH:~/Library/Android/sdk/tools" 
    改为
    export PATH="$PATH:~/Library/Android/sdk/emulator"

以上是关于Android emulator启动模拟器的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio启动时报错 Emulator: emulator: ERROR: OpenGLES emulation failed to initialize.

[Android开发]emulator无法启动的问题

Android Emulator 启动但 Eclipse 无法识别

你如何让 VS Android Emulator Images 启动?

Android Studio 3.0.1模拟器启动报错Emulator: glClear:466 GL err 0x502

Android Emulator 不会运行从 Eclipse 启动的应用程序