问题描述
我看到苹果的新闻如下.
I saw apple's news as below.
使用 Xcode 5.1.1 构建您的应用
自 2014 年 5 月 15 日起,新应用和应用更新已提交至应用商店必须使用 Xcode 5.1.1 构建.此版本可用通过 Mac App Store 上的软件更新.
问题是:
他们如何找出我从 Xcode 5.1 或 5.1.1 获取的构建?或者有什么具体原因吗?Xcode 5.1.1 有默认项目设置吗?Apple强制将dev更改为此设置?或任何其他?因为在我更新之前,我想知道那个原因?
Question is:
How do they find out my build taken from Xcode 5.1 or 5.1.1? Or any specific reason for this? Is Xcode 5.1.1 have default project setting ? Apple force to change dev to this setting? or any other? Because Before I do update, I want to know that reason?
推荐答案
他们可以分辨,因为 Xcode 将版本信息放入 Info.plist
s创建一个 IPA(我认为这也会发生在使用 Xcode 提交到 iTunes Connect 的任何构建中):
They can tell because Xcode puts the version info into the Info.plist
s that are created when you archive a product and when you create an IPA (I presume this also happens with any builds submitted with Xcode to iTunes Connect):
<key>DTXcode</key>
<string>0510</string>
<key>DTXcodeBuild</key>
<string>5B130a</string>
这篇关于使用 Xcode 5.1.1 构建您的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!