Skip to content

Commit

Permalink
Fix VERSION_LONG format
Browse files Browse the repository at this point in the history
VERSION_LONG is used for the CFBundleVersion, which App Store Connects
expects to be an ever increasing integer.

Using a SemVer-style value, results in the following error:

> This bundle is invalid. The value for key CFBundleVersion
> [1.11.1.0] in the Info.plist file must contain a higher version than
> that of the previously uploaded version [11103].
  • Loading branch information
mokagio committed Jul 1, 2020
1 parent fee2794 commit f174a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/Version.public.xcconfig
@@ -1,4 +1,4 @@
VERSION_SHORT=1.11.1

// Public long version example: VERSION_LONG=9.9.0.0
VERSION_LONG=1.11.1.0
VERSION_LONG=11111 // 1_11_1_1 where the last 1 means the first build for this version

0 comments on commit f174a5b

Please sign in to comment.