如何更新项目中的PhoneGap版本?
我已下载最新版本的phonegap ..但如何更新?
我已经尝试过grep myAppPath .ipa'uniqueIdentifier'*
我已经“拒绝访问”
答案 0 :(得分:67)
对于从NPM安装的Phonegap 3
sudo npm update -g phonegap
检查当前版本
phonegap -v
查看npm中的最新版本
npm info phonegap version
答案 1 :(得分:4)
更新Cordova和您的项目
安装cordova实用程序后,您始终可以通过运行以下命令将其更新到最新版本:
$ sudo npm update -g cordova
使用此语法安装特定版本:
$ sudo npm install -g cordova@3.1.0-0.2.0
运行cordova -v以查看当前正在运行的版本。运行npm info命令用于包含当前版本以及其他可用版本号的更长列表:
$ npm info cordova
答案 2 :(得分:3)
使用终端更新phonegap版本.....并运行这些命令
sudo npm update -g phonegap
此链接的更多信息 http://phonegap.com/blog/2014/03/04/phonegap-3-4-release/
答案 3 :(得分:1)
最佳选择可能是使用获取started guides在2.7中创建一个新项目,然后将旧项目复制到新项目中。这不是一件容易的事,但可能是最好的方式。
答案 4 :(得分:1)
答案 5 :(得分:0)
答案 6 :(得分:0)
您最简单的方法来确保和更新系统中的最新phonegap版本。
使用更新您的phonegap最新版本 窗户: C:\ Users \ user1> npm update -g phonegap 苹果电脑: sudo npm update -g phonegap
or
窗口
C:\ Users \ user1> npm install -g phonegap@3.4.0-0.19.7
苹果电脑
sudo npm install -g phonegap@3.4.0-0.19
您可以确保使用最新版本的phonegap ......
答案 7 :(得分:0)
Mac Setup
Step 1:Install Nodejs. You can find a tutorial here on how to setup Node.
We will leverage Node Package Manager to setup Cordova & PhoneGap
Step 2: Install PhoneGap – Run sudo npm install -g phonegap
Step 3: Install Cordova Command Line tools – Run sudo npm install -g cordova
Step 4: Install HomeBrew. We will use HomeBrew to setup Ant on our system.
If you don’t have HomeBrew, run
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
at your terminal.
Step 5: Install Apache-Ant. Run brew update & then install ant brew install ant
Step 6: For iOS development, Run to the App Store & Download the latest
version of XCode. After the installation is completed,
launch the application & accept the license, terms.
iOS setup
Step 1: Create a new folder and name myApp.
Step 2: Open terminal here & Run phonegap create myFirstApp.
This will setup the required files for a startup project.
Step 3: cd myFirstApp
Step 4: Then lets add a iOS platform instance. Run cordova platform add ios
Step 5: Build the iOS project. Run cordova build ios After a stream of messages,
you should see something like this