我尝试使用命令行工具创建并安装Cordova Windows应用程序。运行cordova run windows --device
时,shell会显示以下文本:
Before installing this app, you need to do the following:
- Install the signing certificate
Administrator credentials are required to continue. Please accept the UAC
prompt and provide your administrator password if asked.
问题在于没有提示。科尔多瓦似乎坐在那里,等着我接受提示,但除了按ctrl-c
我什么也做不了。如何获得提示或以其他方式解决问题?
我的环境:Windows 8.1 Enterprise,VS Express 2013,Cordova 6.0.0。项目创建时:
cordova create hello
cd hello
cordova platform add windows
cordova build windows
cordova run windows --device
答案 0 :(得分:0)
我没有深入了解细节,但
cordova run windows --device -- --phone
似乎做了我需要的事情:它成功地将应用程序安装到了连接的手机上。