1

我的 Android 模拟器有一个奇怪的问题。尝试从命令行启动模拟器会导致

me@machine$ /path/to/android/sdk/tools/emulator @Emu_Name
PANIC: Missing emulator engine program for 'x86' CPU.

但是,当我从 Android Studio 启动模拟器时,它可以工作。另外,我可以从命令行 启动其他Android 模拟器,只是这个特定的 AVD 坏了。

有任何想法吗?

4

1 回答 1

1

Android Studio 正在从目录和文件启动模拟器:

/path/to/android/sdk/emulator/emulator

(见这里https://www.stkent.com/2017/08/10/update-your-path-for-the-new-android-emulator-location.html

这就是区别。

运行命令:

me@machine$ /path/to/android/sdk/eumaltor/emulator @Emu_Name

应该可以解决您的问题。

语境:

于 2019-11-09T12:10:29.080 回答