问题描述
我想上传我的应用程序的新版本.我的应用程序在 iTunes 中的旧版本是 2.1,我将新版本升级为 2.2.但是当我尝试验证我的应用程序时,它会出错
I want to upload new version of my app. The old version of my app in iTunes was 2.1 and I am uploding new version as 2.2. But when i am trying to validate my app it will give an error
"CFBundleVerion must be higher than the previously uploaded version".
我还将 CFBundleVersion 增加为 3.0,BundleVersion 也增加为 3.0.
I am also incrementing the CFBundleVersion as 3.0 and BundleVersion as also 3.0 from previous versions.
我的应用使用 Xcode 4.0.
有什么问题?
任何帮助将不胜感激.
推荐答案
您需要更改 info.plist
中的包版本.
You need to change the bundle version in your info.plist
.
当您提交现有应用的更新时,您的捆绑版本
应该增加.
Your Bundle Version
should be increased while you submit an update of your existing app.
因此,根据更改次数
和您的更改有多大
,将您的包版本从 1.0 增加到 2.0 或可能是 1.1.
So increase your bundle version from 1.0 to may 2.0 or may be 1.1 based on the number of changes
and how big your changes are
.
您可以参考以下几个链接以更清楚地了解这一点:
Here are couple of links you can refer to get more clarity on this:
Info.plist 上传错误中的 CFBundleVersion
希望这会有所帮助.
这篇关于错误:CFBundleVersion 必须高于之前上传的版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!