我正面临以下问题,无法构建应用程序。
XXX有冲突的配置设置。XXX自动 但配置配置文件通配符已手动配置 指定。中将配置文件的值设置为“自动” 生成设置编辑器,或在目标中切换到手动配置 编辑器。SDK中产品类型“Application”需要代码签名 iOS 10.0的
我也无法选择一个特定的配置文件。
如何解决这个问题?
我正面临以下问题,无法构建应用程序。
XXX有冲突的配置设置。XXX自动 但配置配置文件通配符已手动配置 指定。中将配置文件的值设置为“自动” 生成设置编辑器,或在目标中切换到手动配置 编辑器。SDK中产品类型“Application”需要代码签名 iOS 10.0的
我也无法选择一个特定的配置文件。
如何解决这个问题?
当前回答
勾-勾(勾-勾)“自动管理签名”.)的Xcode复选框不适合我(正如许多人在顶部建议的那样)。
它发生在项目中链接的框架上。
解决方案:
找到需要签名的框架或任何其他目标。 转到构建设置 搜索签名标识 设置“不要手动编码签名”。
其他回答
Xcode版本11.0:
我最近升级到Xcode版本11.0。
看起来苹果把签名从原来的常规标签移到了一个新的标签。
导航到应用程序 选择“签名和能力” 点击“启用开发签名”
我的天,为了让它起作用,我不得不做这些。一幅图胜过千言万语。
If you get this error while archiving then continue reading. Go to your app and click on the general tab. Under the signing section, uncheck "Automatically manage signing". As soon as you do that you will get a status of red error as shown below. Now here's the tricky part. You need to uncheck "Automatically manage Signing" in both the targets under your project. This step is very important. Now go under "build settings" tab of each of those targets and set "iOS Developer" under code signing identity. Do the same steps for your "PROJECT". Now do Xcode → Product → Clean. Close your project in Xcode and reopen it again. After this go to the general tab of each of your targets and check "Automatically manage signing" and under team drop down select your developer account Do an archive of your project again and everything should work.
实际上,苹果吗?这是为了让我们的生活更轻松吗?
即使在安装Watch OS应用程序扩展时,Xcode 8.1也出现了同样的错误:
在Build项目中将配置文件更新为空后 设置,一切工作正常。
在每个目标构建设置中,iOS开发人员的代码签名标识。
选择你的目标,在构建设置中搜索用户定义部分,选择供应配置文件并删除它
如果您看到下面的屏幕,并面临所需的代码签名问题,那么以下解决方案之一可能会帮助您。
解决方案1。如前所述,使用Apple ID登录。然后,如果您输入正确的包标识符,您将得到如下选项。然后从列表中选择适当的概要文件。
解决方案2。如果你不想用你的Apple ID登录,那么在项目中更改一个小标志。pbxproj文件。在项目文件中找到以下文本。
/* Begin PBXProject section */
更改标志ProvisioningStyle =自动;to ProvisioningStyle = Manual;参考下图。更改标志后,您将看到从列表中选择适当概要文件的选项。