Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

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

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...