我正面临以下问题,无法构建应用程序。
XXX有冲突的配置设置。XXX自动 但配置配置文件通配符已手动配置 指定。中将配置文件的值设置为“自动” 生成设置编辑器,或在目标中切换到手动配置 编辑器。SDK中产品类型“Application”需要代码签名 iOS 10.0的
我也无法选择一个特定的配置文件。
如何解决这个问题?
我正面临以下问题,无法构建应用程序。
XXX有冲突的配置设置。XXX自动 但配置配置文件通配符已手动配置 指定。中将配置文件的值设置为“自动” 生成设置编辑器,或在目标中切换到手动配置 编辑器。SDK中产品类型“Application”需要代码签名 iOS 10.0的
我也无法选择一个特定的配置文件。
如何解决这个问题?
当前回答
步骤:
一般→签约 取消勾选:自动管理签名 选择Import Provisioning
其他回答
如果您看到下面的屏幕,并面临所需的代码签名问题,那么以下解决方案之一可能会帮助您。
解决方案1。如前所述,使用Apple ID登录。然后,如果您输入正确的包标识符,您将得到如下选项。然后从列表中选择适当的概要文件。
解决方案2。如果你不想用你的Apple ID登录,那么在项目中更改一个小标志。pbxproj文件。在项目文件中找到以下文本。
/* Begin PBXProject section */
更改标志ProvisioningStyle =自动;to ProvisioningStyle = Manual;参考下图。更改标志后,您将看到从列表中选择适当概要文件的选项。
如果在微软移动中心编译时遇到此错误
❌在SDK中,产品类型“Application”需要代码签名 iOS 10.3的 **存档失败**
请注意,移动中心目前还不支持应用商店、临时和企业类型证书的自动签名。自动签名只适用于开发证书。
你可以做两件事来克服这个限制:
Use a development certificate. You'll have to create a new one in the developer.apple.com portal, download it to your machine, export it to a .p12 file using keychain, then finally provide it to Mobile Center. You know the drill. Disable automatic signing. You will find that setting in Xcode in your project targets. Once disabled, a little "i" button will be displayed next to the "Xcode managed profile" label. Click that button, some info about the profile will be displayed. On the top left corner of that window, a "PROV" icon is displayed. That is the provisioning profile that you should provide to Mobile Center. Drag and drop the icon into the corresponding field in Mobile Center.
.
解决此问题:
进入Xcode/Preferences/Accounts 点击你的apple id账户; 点击“查看详细信息”(会打开一个新窗口,其中有“签名身份”和“配置文件”; 删除“配置文件”中的所有证书,清空垃圾; 删除你的Apple-ID账号; 再次登录与你的苹果id和建立应用程序!
好运!
我不想这么说。我退出Xcode,重新打开。简单有效:)
我只需要取消勾选“自动管理签名”,再次检查它,并重新构建。