美文网首页
Xcode10 报“XXXX has conflicting p

Xcode10 报“XXXX has conflicting p

作者: 蜀中怪客 | 来源:发表于2019-01-25 08:49 被阅读0次

问题描述:

开启自动管理签名后,Xocde10 报错描述如:

“XXXX is automatically signed,but provisioning profile 45551591-2d82-4cc3-a2b7-99838c6700b3 has been manually specified. Set the provisioning profile value to "Automatic" in the build settings editor,or switch to manual signing in the project editor.”

问题原因:

初步怀疑是由于使用了不同的bundel id,之前的bundle id是手动配置,后面的选用的是自动签名。自动签名后,xcode10并未将之前的配置信息清理掉。所以导致了描述文件冲突。

解决办法:

用文本编辑打开“project.pbxproj”,并全局搜索冲突的描述文件id“45551591-2d82-4cc3-a2b7-99838c6700b3”,并删除掉所有的对应的描述文件设置“PROVISIONING_PROFILE = "45551591-2d82-4cc3-a2b7-99838c6700b3”;”即可。

相关文章

网友评论

      本文标题:Xcode10 报“XXXX has conflicting p

      本文链接:https://www.haomeiwen.com/subject/otopjqtx.html