简体   繁体   English

使用Xcode提交到App Store

[英]Submitting to the App Store Using Xcode

So! 所以! Thought this would be easy trying to use TestFlighApp inside itunesconnect but this is what stops me: 认为尝试在itunesconnect中使用TestFlighApp会很容易,但这就是阻止我的原因:

此捆绑包无效。关键uirequireddevicecapabilities包含值

How I got this message is: Product > Archive > Success! 我如何收到此消息的是: 产品 > 存档 >成功! > Submit to App Store... > Select My Team > Submit > Uploading Archive ( Verifying assets with the iTunes store BAM! Message > 提交到App Store ... > 选择我的团队 > 提交 > 上传档案(通过iTunes商店 BAM 验证资产 !消息

Things I've Tried 我尝试过的事情

  1. Verified my Project: since this Xcode project was created around 2011, I noticed I had to validate settings by clicking Editor > Validate Settings... didn't fix my problem. 验证我的项目:由于此Xcode项目是在2011年左右创建的,因此我注意到我必须通过单击“ 编辑器” >“ 验证设置”验证设置...没有解决我的问题。 actually created more ;) but all fixed 实际上创造了更多;)但全部固定
  2. Added the UIRequiredDeviceCapabilities in Info.plist: I have only arm64 afer removing armv7 , armv7s 在新增的的Info.plist UIRequiredDeviceCapabilities:我只有arm64 AFER去除ARMv7,armv7s

Let me know if anything else is needed to help help me, I'll edit :) 让我知道是否还有其他需要帮助的地方,我将进行编辑:)

<spoiler>
    just wait...
</spoiler>

http://asciiwwdc.com/2015/sessions/102

It happend to me when I tried to avoid develop my app for iPhone4s because of clear understanding - this is the work for nothing. 当我因为清楚的理解而试图避免为iPhone4s开发我的应用程序时,发生了这件事-这无济于事。 In next half a year of after one year this device goes out. 一年后的下半年,该设备将淘汰。

I tried to limited 我试图限制

armv7s for below

<key>UIRequiredDeviceCapabilities</key>
<array>
    <string>armv7</string>
</array>

超出限制后

and get 并得到

不提交

change limits everywhere 随处更改限制

极限

result is the same: need to add support for armv7 =( 结果是相同的:需要添加对armv7 =(

不

Ok. 好。 Get everything back... 找回一切...

一切都回来了。

and: 和:

完成

The problem is armv7 is a minimum that required for 8.4 and 8.0 as well. 问题是armv7是8.4和8.0的最低要求。 So you can not avoiding it. 因此,您无法避免。 Enjoy. 请享用。

Not sure why but by removing the array, UIRequiredDeviceCapabilities, the issue was resolved. 不知道为什么,但是通过删除数组UIRequiredDeviceCapabilities,解决了该问题。 Not sure why that array was added to my Info.plist but problem solved :) 不知道为什么将该数组添加到我的Info.plist中,但问题已解决:)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM