NativeScript tns 运行 android --device/emulator 不起作用
NativeScript tns run android --device/emulator doesn't work
我是本机脚本的新手,我一直在尝试在设备或模拟器上进行测试。这就是我得到的。
C:\Users\Muzi J\Documents\tns\HelloWorld>tns run android --device 4TE7N17106003969
Copying template files...
- Installing tns-androidInstalling tns-android
C:\Users\Muzi J\Documents\tns\HelloWorld
`-- tns-android@2.5.0
Exception: The plugin tns-android@2.5.0 is already installed
您可以尝试以下几件事:
删除您的平台文件夹并删除主 package.json 中具有 "android": "2.5.x"
的行项目然后执行 tns platform add android
尝试将您的代码移动到一个没有 space 的文件夹中。我最近在名称中的 spaces 导致构建问题的问题中看到了一些问题。
我是本机脚本的新手,我一直在尝试在设备或模拟器上进行测试。这就是我得到的。
C:\Users\Muzi J\Documents\tns\HelloWorld>tns run android --device 4TE7N17106003969
Copying template files...
- Installing tns-androidInstalling tns-android
C:\Users\Muzi J\Documents\tns\HelloWorld
`-- tns-android@2.5.0
Exception: The plugin tns-android@2.5.0 is already installed
您可以尝试以下几件事:
删除您的平台文件夹并删除主 package.json 中具有
"android": "2.5.x"
的行项目然后执行tns platform add android
尝试将您的代码移动到一个没有 space 的文件夹中。我最近在名称中的 spaces 导致构建问题的问题中看到了一些问题。