vs2015 cordova环境安装个人遇到的几个问题

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vs2015 cordova环境安装个人遇到的几个问题相关的知识,希望对你有一定的参考价值。

原文:vs2015 cordova环境安装【个人遇到的几个问题】

问题1 vs2015,设置 ?Debug ?android 设备【真机调试】

Exception in thread "main"java.lang.RuntimeException: java.util.zip.ZipException: error in opening zipfile

下载这个包始终下载不下来,

解答1:

参考这个文档,http://www.ithao123.cn/content-10878480.html

1.手机下载所需的版本,

2. 打开文件gradle-wrapper.properties,如我的grails工程中该文件所在位置是:工程根目录\gradle\wrapper\gradle-wrapper.properties

3. 用#号注释掉原先的distributionUrl,然后再写一行,将其值改成我们下载的gradle的包所在路径即可

#distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-bin.zip
distributionUrl=./gradle-2.9-bin.zip



问题2:

使用npm安装一些包失败了的看过来(npm国内镜像介绍)

解答2:

镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在):

1.通过config命令

1

2

npm?config?set?registry?http://registry.cnpmjs.org

npm?info?underscore?(如果上面配置正确这个命令会有字符串response)

2.命令行指定

1

npm?--registry?http://registry.cnpmjs.org?info?underscore

3.编辑?~/.npmrc?加入下面内容

1

registry?=?http://registry.cnpmjs.org

?


问题3:

npm WARN deprecated [email protected]:

解答3:

npm update minimatch

npm -v minimatch

npm install -g [email protected]















以上是关于vs2015 cordova环境安装个人遇到的几个问题的主要内容,如果未能解决你的问题,请参考以下文章

VS2015 Cordova Ionic移动开发

InstallShield 2015 安装 在vs2015

vs2015-Cordova开发安卓应用环境搭建

构建失败,出现异常 VS 2015 Apache Cordova

VS2015使用现有的cordova安装?

创建windows服务遇到的几个坑