Internal version control for iphone applications

Does anyone have any suggestions on how to run the iphone application version other than using the "Bundle Version" and "Short string Version". I find it difficult to rely on these values ​​for version control of my application. B / c I have several options (lite, paid) of the same application. Also, the current implementation of itunes connect does not allow you to change the version number of the update after installing it, so if you decide to replace the update with a new binary code, you are stuck using the same version number from which you started.

I was thinking of adding key-value pairs to the info.plist file, but I'm not sure if I am allowed to add new key-value pairs to info.plist. Another alternative that I can think of is to create your own plist for application settings.

If there are better ways to achieve this, I am open to listening to them.

Thanks!

+3
source share
3 answers

You can definitely add your own key / value pairs to info.plist. Be sure to lock the keys to make sure your keys do not interfere with any Apple keys.

+3
source

Info.plist, xcode, . , "Bundle Version".

:

http://www.codza.com/free-iphone-app-version-from-the-same-xcode-project

, Info.plist( ), , , "Bundle Version", .

+1

Some of the questions discussed in response to this question may come in handy in this case.

0
source

Source: https://habr.com/ru/post/1702557/


All Articles