iphone - What's the difference between "version number" in itunes connect, "bundle version", "bundle version string" in xcode? -
Apple doctors could have been more specific about submitting an updated version.
Are they related in any way?
Yes, they are related. They all see the version of your application.
-
Connect iTunes
This is the version number shown in the app store; It should be a pure version number like1.2.3
Bundle version (CFBundleVersion)
This' t Requires a pure version number. It could be something like12345 or
1.2.3 (create 12345AB) . This is shown in the window for Mac OS X apps, for example and is often "build number" more than "version number".
Bundle version string (CFBundleShortVersionString) This value is used as the "real" version number iTunes Connect
should be
in the update / strong>
@Snlehton As told by, CFBundleVersion should be a pure version number such as1.2.3 when you want to upload your application (iOS) App Store.
Comments
Post a Comment