使用Windows CLI将phonegap应用程序安装到android模拟器

前端之家收集整理的这篇文章主要介绍了使用Windows CLI将phonegap应用程序安装到android模拟器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将我的Phonegap应用程序安装到 Android AVD / Emulator上.我已经推出了AVD,并注册为5554:Nexus_S.

在Windows提示符下使用Phonegap命令时,我输入:

phonegap build android
phonegap install android

我得到的输出说它成功地将该应用程序安装到设备上,但它不会显示.这是安装命令的输出

[phonegap] detecting Android SDK environment...
[phonegap] using the local environment
[phonegap] trying to install app onto device
cp: dest file already exists: C:\Users\username\app\platforms\android\assets\www\phonegap.js
[phonegap] successfully installed onto device

我尝试使用不运气的选项来定位设备的变体:

--device=5554
--target=5554

有任何想法吗?

我想到了.您必须在调用中指定–emulator =,因此命令如下所示:
phonegap install --emulator=emulator-5554 android

您可以通过在项目中的/ platforms / android / cordova / lib /文件夹下运行list-started-emulators.bat找到正在运行的模拟器的名称/ ID.

原文链接:https://www.f2er.com/windows/371335.html

猜你在找的Windows相关文章