应用商店分发过程中存档验证失败并出现错误

Archive validation failed with errors during app store distribution process

我一直在尝试将我的申请发送给苹果提交,这是我的第一次体验。我搜索了错误并应用了所有建议的解决方案。但是 none 的解决方案对我不起作用。我收到以下错误。

我将项目目标和 Alamofire 框架的 ios 部署目标设置为 ios 7.0 及更高版本。另外,我的 Xcode 版本是 6.1.1 。但是,我不明白为什么不工作。

你能帮帮我吗?

感谢您的回答

此致

很遗憾,iOS 7 不支持框架。 Here 是关于它的一些附加信息。已知的解决方法是通过将 Alamofire.swift 文件直接拖到您的项目中来将 Alamofire 添加到您的项目中。

A good way to track this type of usage in your project is to use Git submodules. You could also download a version and copy the file into your project, but then it gets more difficult to track what version you have compiled into your project.

这会将 Alamofire 构建到您的项目中,就像它只是与您的项目关联的另一个 Swift 文件一样。

This is also why most Swift CocoaPods are iOS 8 only.