简体   繁体   English

如何在Xcode6中创建没有开发人员帐户凭据的IPA

[英]How to create IPA without Developer Account credentials in Xcode6

One of my customers won't provide access to his Developer Portal & iTunes Connect credentials. 我的一位客户无法访问他的Developer Portal和iTunes Connect凭据。 With Xcode 5 we have used this flow to submit apps for review: 使用Xcode 5,我们使用此流程提交应用以供审核:

  • Customer sends me Distribution Certificate & App Store Provisioning Profile 客户向我发送分发证书和App Store Provisioning Profile
  • I generate an IPA with these credentials and export it for Ad-Hoc distribution 我使用这些凭据生成IPA并将其导出以进行Ad-Hoc分发
  • I send the IPA to customer 我将IPA发送给客户
  • Customer submits it to iTunes Connect using App Loader 客户使用App Loader将其提交给iTunes Connect

Now as I can see that Xcode 6 doesn't allow me to build IPA even for Ad-Hoc development without a developer login and password. 现在我可以看到Xcode 6不允许我为没有开发人员登录名和密码的Ad-Hoc开发构建IPA。 Is there any way to generate an IPA without credentials? 有没有办法在没有凭据的情况下生成IPA?

Thanks in advance. 提前致谢。

@frozen_lion you can still use xcodebuild to export ipa without Developer Account access: @frozen_lion你仍然可以使用xcodebuild导出ipa而无需开发者帐户访问权限:

xcodebuild -exportArchive -archivePath $projectname.xcarchive -exportPath $projectname -exportFormat ipa -exportProvisioningProfile “Provisioning Profile Name”

More details you can find in this article Using xcodebuild To Export a .ipa From an Archive 您可以在本文中找到更多详细信息使用xcodebuild从存档中导出.ipa

You should use Xcode6.1.1, it was supported. 你应该使用Xcode6.1.1,它是受支持的。 Choose "Use local signing assets" by accounts dropdown box. 从帐户下拉框中选择“使用本地签名资产”。

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

相关问题 如何在没有Apple Developer帐户的情况下在xcode 6中创建ipa? - How to create ipa in xcode 6 without Apple Developer account? 如何在更新的操作系统和 Xcode 的 react-native 中创建 IPA 而无需在 IOS 中拥有开发人员帐户? - How to create an IPA without having Developer Account in IOS in react-native in Updated OS and Xcode? 在没有开发人员帐户的情况下在Visual Studio中创建IPA - Create IPA in Visual Studio without Developer Account 如何在Xcode7中创建没有Apple Developer Program的ipa - How to create ipa without Apple Developer Program in Xcode7 在iOS设备(iPhone / iPad)上安装应用或从Xcode创建.ipa,而无需代码签名和开发者帐户 - Install app on iOS device (iPhone / iPad) or create .ipa from Xcode without code signing and developer account 如何在没有Apple开发人员帐户的情况下从Xcode项目中导出临时.ipa - How to export ad-hoc .ipa from xcode project without apple developer account 如何在没有Appstore和Apple开发人员帐户的情况下分发.ipa文件? - how to distribute a .ipa file without appstore and apple developer account? Xcode6 IPA发行问题 - Xcode6 ipa distribution issue 没有苹果开发者帐户,如何降级Xcode? - How to downgrade Xcode without apple developer account? 如何在Xcode 6中创建IPA? - How to create IPA in Xcode 6?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM