1

开发了我的第一个 iPhone 应用程序供内部使用,它应该在内部分发。当我使用开发人员配置文件对构建进行代码签名时,我能够成功地将其安装到设备上。但是当使用App store 分发配置文件对构建进行代码签名时,无法使用 iTunes 安装相同的应用程序(.ipa)。我收到以下错误。

    Oct  1 15:52:32 unknown installd[462] <Error>: profile not valid: 0xe8008012
    Oct  1 15:52:32 unknown installd[462] <Error>: 001d7000 install_embedded_profile: Could not install embedded profile: -402620398
    Oct  1 15:52:32 unknown installd[462] <Error>: 001d7000 verify_signer_identity: Could not copy validate signature: -402620395
    Oct  1 15:52:32 unknown installd[462] <Error>: 001d7000 preflight_application_install: Could not verify executable at /var/tmp/install_staging.1JP9zU/foo_extracted/Payload/mi-ios.app
    Oct  1 15:52:32 unknown installd[462] <Error>: 001d7000 install_application: Could not preflight application install
    Oct  1 15:52:32 unknown installd[462] <Error>: 001d7000 handle_install: API failed
    Oct  1 15:52:32 unknown installd[462] <Error>: 001d7000 send_message: failed to send mach message of 71 bytes: 10000003
    Oct  1 15:52:32 unknown installd[462] <Error>: 001d7000 send_error: Could not send error response to client

我确保分发配置文件有效(在我的 Mac 上安装了私钥和证书)。

我不确定我在这里缺少什么。我遵循了 iOS 开发中心给出的每一步。任何帮助,将不胜感激。

4

1 回答 1

1

顾名思义,App Store 配置文件在通过 App Store 分发时使用。它的存在是为了签署您的应用程序以通过 App Store 分发,并且不能用于任何其他目的。除非您通过 App Store安装已由其签名的应用程序,否则它将完全正确地失败。

如果您想在相对较短的时间内将应用程序分发给少数设备供内部使用,您应该使用临时配置文件;如果要长时间使用大量用户,则需要注册为企业开发人员并遵循不同的流程。

于 2012-10-01T20:48:04.040 回答