How to update my phonegap version?

后端 未结 8 1743
感动是毒
感动是毒 2021-02-01 05:37

How can I update my PhoneGap version in my project?

I have download the latest version of phonegap..but how to update?

I\'ve tried grep myAppPath .ipa \'uniqueId

8条回答
  •  星月不相逢
    2021-02-01 06:06

    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
    

提交回复
热议问题