我已经安装了cordova,并正在使用它来开发android应用。我已经安装了所有SDK工具。
我遇到了无法从命令行启动仿真器的问题。我看到已经有很多关于此的文章,但是没有任何文章能真正回答问题或显示命令行工具的详细输出。
这是命令的命令行输出
cordova run android --emulator --verbose
Waiting for emulator to start...
Running adb shell command "getprop dev.bootcomplete" on target emulator-5584...
Running command: adb -s emulator-5584 shell getprop dev.bootcomplete
Command finished with error code 1: adb -s,emulator-5584,shell,getprop,dev.bootcomplete
Running adb shell command "getprop dev.bootcomplete" on target emulator-5584...
Running command: adb -s emulator-5584 shell getprop dev.bootcomplete
Command finished with error code 1: adb -s,emulator-5584,shell,getprop,dev.bootcomplete
Running adb shell command "getprop dev.bootcomplete" on target emulator-5584...
Running command: adb -s emulator-5584 shell getprop dev.bootcomplete
Command finished with error code 1: adb -s,emulator-5584,shell,getprop,dev.bootcomplete
然后不断循环。
当前解决方法
我有一个解决方法,只需要我从Android Studio AVD Manager运行模拟器,然后运行
cordova emulate android
在模拟器上运行应用程序。
我想使命令行工具正常工作,因为它可以提高生产率。
任何帮助将不胜感激!