Can I use the version of the iOS application as xxxx while downloading to the Apple Store?

My application is currently in xxx format, but now for the next version we want to make it the xxxx version format. Now a version was created in itunesconnect with xxxx, but the problem is that when loading the assembly in the apple, an error message appears: "Value for the key CFBundleShortVersionString "xxxx" in the info.plist file must be a period-separated list - negative integers. "

I saw a lot of applications with the format "xxxx" in the appstore. but why they do not allow? Have they changed (the apple) recently?

+6
source share
1 answer

xxx is the largest format, divided by period. You cannot use xxxx (when creating with Xcode 6. In older versions of Xcode, the xxxx version format is allowed).

It is possible that the input field in iTunes Connect does not check the input that you provide for this case, so you could enter it there. The problem is that Xcode does not allow you to use it, and since your version string is checked when loading the binary, you must use the xxx format

+4
source

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


All Articles