Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
156 views
in Technique[技术] by (71.8m points)

javascript - Upgrade Cordova Version of an iOS app

How can I transfer a Cordova iOS app from one PC to other? The app is made in some other version of Cordova and I want to upgrade its Cordova version.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can follow the steps below:

  • In new PC, install the latest version of cordova using npm install -g cordova command
  • In new PC, create a new cordova project using cordova create PROJECT_NAME command in desired location using terminal
  • Now navigate to the newly create project folder, copy the contents of WWW folder and config.xml file from Old project in Old PC and replace the same in newly created project folder.
  • In terminal, navigate to project root directory and install the required plugins in new project using cordova plugin add PLUGIN_NAME command
  • After installing required plugins, add the iOS platform to the project using cordova platform add ios command
  • Now build the project using cordova build ios command

You are good to go now. But you gotta test your project once thoroughly as some plugin may not works as expected with latest cordova version.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...