emulator -avd 不启动设备
emulator -avd does not launch the device
在 Ubuntu 16.04 我已经安装了 AndroidStudio 并通过它的 AVD 管理器 GUI 创建了两个新设备。现在在终端上,当我输入 emulator -list-avds
时,它会正确列出设备,但是当 运行 emulator -avd <name>
时,我会遇到错误:
[139684796983104]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ../emulator/lib64/qt/lib
Could not launch '/home/amir/../emulator/qemu/linux-x86_64/qemu-system-i386': No such file or directory
我该如何解决?
在 Windows 10 和 Ubuntu 中我都遇到了同样的问题。简单的解决方案是我必须转到 tools
的目录然后执行命令。例如 windows.
$ cd C:\Users\user-name\AppData\Local\Android\sdk\tools
emulator -avd <deviceName>
另外值得一提的是,我想要 React-Native 开发,Expo XDE 救了我
在 Ubuntu 16.04 我已经安装了 AndroidStudio 并通过它的 AVD 管理器 GUI 创建了两个新设备。现在在终端上,当我输入 emulator -list-avds
时,它会正确列出设备,但是当 运行 emulator -avd <name>
时,我会遇到错误:
[139684796983104]:ERROR:android/android-emu/android/qt/qt_setup.cpp:28:Qt library not found at ../emulator/lib64/qt/lib
Could not launch '/home/amir/../emulator/qemu/linux-x86_64/qemu-system-i386': No such file or directory
我该如何解决?
在 Windows 10 和 Ubuntu 中我都遇到了同样的问题。简单的解决方案是我必须转到 tools
的目录然后执行命令。例如 windows.
$ cd C:\Users\user-name\AppData\Local\Android\sdk\tools
emulator -avd <deviceName>
另外值得一提的是,我想要 React-Native 开发,Expo XDE 救了我