1

因此,我正在尝试将我的 iPhone 应用程序存档以进行临时测试,但我遇到了一些奇怪的情况。当我归档它时,在它显示归档类型的顶部,由于某种原因,它显示“Mac 应用程序归档”而不是通常的“iOS 应用程序归档”

我不知道为什么会这样,因为这不是一个 mac 应用程序。

当我归档可能有帮助的应用程序时,我会收到以下三个警告,但我不确定。

第一个是这个

iPhone/iPod Touch: application executable is missing a required architecture.  
At least     one of the following architecture(s) must be present: armv6 (-19033)

我不确定为什么会发生这种情况,因为我在有效架构中列出了 armv6 和 armv7

我得到的第二个警告是这个

The CodeResources file is missing and it must be a symbolic link to
_CodeSignature/CodeResources.  Make certain that the bundle is on a locally-mounted volume
(not a remote SMB volume), and be certain to use the Mac OS X Finder to compress it  
(-19062)

同样,不确定为什么会发生这种情况,甚至不知道这意味着什么。

最后一个错误是这个

Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'Catch It/Resources/Info.plist'.

我真的迷路了,我不知道它想告诉我什么。

请帮助我,因为我无法分发这个 ipa,因为它认为它是一个 mac 应用程序。

谢谢

4

2 回答 2

3

我猜你使用的是 Xcode 4.5。

我刚刚遇到了同样的问题,并设法解决了这个问题。我的应用程序现在正在等待审核。

这就是我所做的更改:在目标中,我选择了“构建阶段”,然后在“复制捆绑资源”中删除了 plist 文件。

如果这不能解决您的问题,请确保您将 iOS 部署目标至少设置为 iOS 4.3。

编辑:我还从两者ArchitecturesValid Archictectures构建设置中删除了 armv6。

于 2012-09-29T18:49:58.897 回答
0

我在 Xcode 4.6.3 上收到消息

The CodeResources file is missing and it must be a symbolic link to
_CodeSignature/CodeResources.  Make certain that the bundle is on a locally-mounted volume
(not a remote SMB volume), and be certain to use the Mac OS X Finder to compress it  
(-19062)

当尝试构建应用程序时,在模拟器上运行它之后。将目标更改为 iOSDevise 可解决此问题。

于 2013-09-24T08:10:22.027 回答