Nativescript - 运行 android --emulator 时本机模拟器错误

Nativescript - native emulator error when run android --emulator

我在 cmd 上 run android --emulator 时收到以下错误;

Cannot run your app in the native emulator. Increase the timeout of the operation with the --timeout option or try to restart your adb server with 'adb kill-server' command. Alternatively, run the Android Virtual Device manager and increase the allocated RAM for the virtual device.

我用管理员权限打开了它运行网站上的所有教程。

我现在卡在这一步了,还没找到解决办法。

我也试过tns run android --emulator --timeout -0等了一个小时没有结果。

我怎样才能获得模拟器 运行?

我遇到了同样的问题,我通过打开 avd 管理器并尝试启动您创建的虚拟设备(模拟器)解决了这个问题。如果模拟器没有启动,您将在控制台中收到错误消息。

对我来说,我必须安装英特尔 HAXM,才能启动模拟器

You just need to open your Android Virtual Device Manager and download the latest emulator. Then run your application again.It will work.

tns run android

运行模拟器,然后 运行 运行其上的应用程序。

有时这两个过程不能同时发生,Linux 中的管理员访问可能是这种情况。

尝试先启动模拟器,然后再启动应用程序。

emulator -avd avd_name [ {-option [value]} … ]

例如:

sudo $ANDROID_HOME/emulator/emulator -avd test -netdelay none -netspeed full

'sudo' 对 Linux 用户很重要。

然后使用它来启动应用程序。

tns run android