My currect iOS app in Appstore market has follwing bundle Versions.
CFBundleVersion 10301 CFBundleShortVersionString 1.3.0
Im going to update my app this week and my version # are
CFBundleVersion 2.1.7 CFBundleShortVersionString 2.1.7
My doubt here is
Current CFBundleVersion 10301 New CFBundleVersion 2.1.7
is this correct?
Can I change the format of CFBundleVersion in my new version?
1 Answer
If you want a quick and dirty fix, in Tiapp.xml, make your version 20107.
In the TiApp.py file of the SDK version you are currently using, around line 460 or so, change:
app_version_ = CFBundleShortVersionString.split('.')
to
app_version_ = CFBundleShortVersionString.split('0')
That will split your nonstandard build number on the 0 instead of on the . (which, btw does not match Apple's own recomendations regarding CFBundleVersion
Your client used a non-standard, large value in a previous submission.
Your Answer
Think you can help? Login to answer this question!