Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use iOS App version as x.x.x.x while uploading to apple store?

Currently, my app with x.x.x format, but now by the next release we want to make it version format to x.x.x.x. Now created a version in itunesconnect with x.x.x.x, but the problem is while uploading build to apple its giving an error that "The value for key CFBundleShortVersionString 'x.x.x.x' in the info.plist file must be a period-separated list of at most three non- negative integers."

I have seen many apps with 'x.x.x.x' format in appstore. but why they are not allowing? have they(apple) changed any thing recently?

like image 811
Nookaraju Avatar asked Mar 12 '15 06:03

Nookaraju


People also ask

Can anyone upload an app to Apple Store?

In order to be able to submit apps to the App Store, you need to be enrolled in the Apple Developer Program. It costs $99/year but it will give you access to a bunch of different benefits including: Access to submit apps to the App Stores on all Apple platforms.

What is the difference between App Store and Apple store on iPhone?

If you go to the App Store (which is not an abbreviation for Apple Store), you are searching for apps to download and run on your iPhone.. ie a weather app that you can open and check your local forecast. If you go to the Apple Store, you can shop for a new iPhone, a new iPad, a new MacBook.. accessories.

Is App Store only for iOS?

The App Store makes it simple for users to discover, purchase, and download apps for iPhone, iPad, Mac, Apple TV, and Apple Watch.


1 Answers

x.x.x is the largest period-separated format allowed. You cannot use x.x.x.x (when building with Xcode 6. Older Xcode versions allowed x.x.x.x version format).

Probably the input field in iTunes Connect does not validate the input you provide for this case, so you were able to enter it there. The issue is that Xcode does not allow you to use it, and since your version string is validated when you upload the binary, you should use the format x.x.x.

like image 83
Nikos M. Avatar answered Sep 30 '22 04:09

Nikos M.