我的Xcode 4.6 iOS项目有“项目”和“目标”部分,每个部分在“代码签名标识”下都有一个“调试”和“发布”区域,其中包含“任意iOS SDK”条目。
一切看起来都是这样的:
PROJECT
myProject
Code Signing
Code Signing Identity
Debug iPhone Developer
Any iOS SDK iPhone Developer
Release iPhone Distribution
Any iOS SDK iPhone Distribution
TARGET
myTarget
Code Signing
Debug iPhone Developer
Any iOS SDK iPhone Developer
Release iPhone Distribution
Any iOS SDK iPhone Distribution因此,以下是我总结的问题:
发布于 2013-03-29 02:25:36
1. On which line should I specify the provisioning profile?首先,您不必在PROJECT部分中设置配置文件。我总是在TARGET部分设置它们。现在,如果您正在开发,则应该设置:
Any iOS SDK iPhone Developer在Debug下。如果您正在准备Adhoc,则需要设置:
Any iOS SDK iPhone Distribution在Release下。
2 .What is the best way to import an updated provisioning profile into Xcode?转到Organizer,点击Devices选项卡,然后点击底部的New按钮,你会被提示在你的苹果帐号上签名。然后我认为概要文件将被导入,单击Refresh按钮查看添加的配置文件。
https://stackoverflow.com/questions/15696322
复制相似问题