Ionic:Android 模拟器错误

问题描述 投票:0回答:2

我正在尝试使用 Android Studio v3.0 附带的 Android 模拟器来测试我的 Ionic(3.16.0) 混合应用程序。

/myapp> ionic cordova build android
成功创建构建。但是,当我运行
/myapp> ionic cordova emulate android
时,模拟器会启动并加载屏幕,但我无法在模拟器中找到我的应用程序。终端日志中的堆栈跟踪如下所示:

Waiting for emulator to start...

emulator: Requested console port 5584: Inferring adb port 5585.
Hax is enabled
Hax ram_size 0x40000000
HAX is working and emulator runs in fast virt mode.
emulator:
Listening for console connections on port: 5584
emulator: Serial number of this emulator (for ADB): emulator-5584
Error: Failed to execute shell command "getprop,dev.bootcomplete"" on device: Error: C:\Users\ilourdus\AppData\Local\Android\Sd
k\platform-tools\adb.exe: Command failed with exit code 1 Error output:
error: device unauthorized.
This adb server's $ADB_VENDOR_KEYS is not set
Try 'adb kill-server' if that seems wrong.
Otherwise check for a confirmation dialog on your device.

我已经运行 adb 服务器,并将平台工具路径添加到系统路径中。我有 Cordova 6.5.0.

我可以获得有关上述日志中的错误以及如何在模拟器中启动我的应用程序的帮助吗?

android cordova ionic-framework ionic3 cordova-3
2个回答
1
投票

我将 CPU/ABI 映像从“Google Play...(x86)”更改为“Google API...(x86)”后,此问题得到解决


0
投票

重启ADB服务器: 打开命令提示符或终端并运行以下命令:

-对于 Windows:

adb 杀死服务器

adb 启动服务器

-对于 macOS/Linux:

sudo adb Kill-server

sudo adb 启动服务器

-然后,尝试再次运行模拟器。

© www.soinside.com 2019 - 2024. All rights reserved.