问题描述:
开启自动管理签名后,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”;”即可。