Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change my version for an Cordova iOS App

Tags:

xcode

ios

cordova

I have an app that appears to be version 0.0.1 when in the Organiser screen but the existing app is version 1.0 in the App Store - I basically want to set this version number to be 1.1 (so it differentiates from any other versions and doesn't overwrite)

Where do I change this in Xcode or directly in the code itself?

like image 740
Zabs Avatar asked Nov 20 '25 13:11

Zabs


1 Answers

This is derived from the version attribute of the widget element in config.xml (the one in the project root folder).

You'll have to run cordova prepare ios after changing the config.xml to update the project.

(You could change it in Xcode directly - there is a file ending on -Info.plist, but this change would be overwritten every time the project is generated.)

like image 152
Glorfindel Avatar answered Nov 23 '25 01:11

Glorfindel