Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CFBundleVersion must be a period-separated list

I'm really having a problem with uploading my build to itunes connect. I always get the following error

enter image description here

My general project settings look like this

enter image description here

I'm also using cocoapods in my project but have never received this error before and I already have uploaded a couple of builds. I have no idea where that strange number [1443188838-89]comes from.

Also on the info tab the bundle version looks fine to me

enter image description here

As well as info.plist as source code looks good

enter image description here

Any help is much appreciated.

like image 217
gpichler Avatar asked Oct 22 '15 21:10

gpichler


1 Answers

Ok, so after spending a lot of time on this issue I finally could solve it.

Check all your Info.plist files if there is a wrong CFBundleVersion number in their. Go through all your Cocoapods and static frameworks and their bundles (right click - show package content) as well. In my case it was an incorrect CFBundleVersion key in the Netverify (Jumio) framework and bundle. (same as shown in the error message).

I have just changed it to a valid key like 1.0.0 and now it works!

like image 52
gpichler Avatar answered Oct 12 '22 18:10

gpichler