在提交到应用程序商店之前我需要签署我的应用程序吗?
在提交到应用程序商店之前,我是否需要使用我的分发配置文件签署我的应用程序?还告诉我我是否需要像我们临时那样添加权利,或者只是使用应用程序商店分发配置文件进行构建?
do i need to sign my app with my distribution provisioning profile before submitting to app store? also tell me do i need to add entitlement as we do in ad hoc or simply build with app store distribution provision profile?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您需要使用与您的分发证书关联的 iPhone 分发配置文件来构建应用程序。如果您还没有这样做,则需要创建一个新的分发配置文件,并将其分发方法设置为 App Store。
是的。就像 Ad Hoc 分发一样,您需要一个 entilements.plist,其中
get-task-allow
未选中。如果您已经在 Xcode 中为 Ad Hoc 构建提供了配置,那么创建 App Store 构建配置应该只是复制 As Hoc 配置并更改代码签名设置以使用 App Store 配置文件。
Yes. You need to build the app with an iPhone Distribution Provisioning Profile associated with your distribution certificate. If you haven't already, you'll need to create a new Distribution Provisioning Profile that has its Distribution Method set to App Store.
Yes. Just like with Ad Hoc distribution, you need an entitilements.plist with the
get-task-allow
unchecked.If you already have a configuration in Xcode for your Ad Hoc build, creating an App Store build configuration should be just a case of duplicating the As Hoc configuration and changing the code signing settings to use the App Store provisioning profile.