问题描述
我正在尝试使用 emulator.exe
作为 Charles Proxy 的 android 模拟器.但是我有问题,当我启动时
I'm trying to use emulator.exe
as android emulator for Charles Proxy. But I have problem, when I launch
emulator @5.1_WVGA_API_28
我收到此错误:
恐慌:缺少x86"CPU 的模拟器引擎程序.
但是我可以从 android studio 运行模拟器并且它运行良好!我有一个英特尔处理器.
But I can run the emulator from android studio and it's working fine! I have an intel processor.
推荐答案
如果你想从命令行运行模拟器,
If you want to run emulator from command line,
<your-full-path>/emulator -avd 5.1_WVGA_API_28
对于较新版本的 Android SDK,模拟器路径应如下所示:
For newer version of Android SDK, the emulator path should be something as below:
/<xxx>/Android/sdk/emulator/emulator
对于旧版本的Android SDK,模拟器路径如下:
For older version of Android SDK, the emulator path is as below:
/<xxx>/Android/sdk/tools/emulator
尝试上述任一方法,看看您的情况.
Try either one of above to see which is your case.
Android 模拟器命令行使用官方文档如下:https://developer.android.com/studio/run/emulator-commandline
Here is the official document for Android emulator command line usage: https://developer.android.com/studio/run/emulator-commandline
这篇关于Windows emulator.exe PANIC:缺少“x86"CPU 的模拟器引擎程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!