简体   繁体   English

将xcode更新为4.5后存档应用程序时出错

[英]Error in Archiving the app after updating xcode to 4.5

before updating the archiving process work good but after updating when i archiving the app it gives a linker error to TestFlight Library error is:- 在更新归档过程之前工作正常但在更新后,当我归档应用程序时,它给TestFlight库发出链接器错误错误: -

ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /Users/dhirajchoudhary/Documents/MyWorldOfExpo/HRWeekIndia/TestFlightSDK1.0/libTestFlight.a for architecture armv7s
clang: error: linker command failed with exit code 1 (use -v to see invocation)

Is any one know how to link the testflight library in Xcode 4.5, iOS 6.0 有人知道如何链接Xcode 4.5,iOS 6.0中的testflight库

It's pretty much exactly what the error message says: your app supports multiple architectures, including armv7s. 这几乎就是错误消息所说的:您的应用程序支持多种体系结构,包括armv7。 You're trying to link with the TestFlightSDK which doesn't include the armv7s architecture. 您正在尝试链接不包含armv7s架构的TestFlightSDK。

You need to either: 你需要:

  • Use a newer version of the TestFlight SDK which includes the new armv7s architecture. 使用包含新armv7s架构的较新版本的TestFlight SDK。 I'm not sure if this exists yet 我不确定这是否存在
  • Remove the armv7s architecture from your application. 从您的应用程序中删除armv7s架构。 It should still work on the iPhone 5 (which is the only device to use armv7s currently) but you would need to test 应该仍然适用于iPhone 5(目前唯一使用armv7s的设备)但你需要测试

您需要安装Test Flight SDK 1.1,它支持arm7

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

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