[Cocoapods] Generated duplicate UUIDs:
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/ )
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/14899231.html
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
一般发生在私有库,我的是发生在私有库B依赖了模块A,同时在主工程里 添加A到 development pod,所以报了这个错,
这是因为 cocoapods 重复生成了相同库的uuid,不过这个错误无关紧要,不影响项目,只是会报提示信息
解决:可以在podfile中 添加:
install!'cocoapods',:deterministic_uuids=>false
例:
# Uncomment the next line to define a global platform for your project install!'cocoapods',:deterministic_uuids=>false platform :ios, '14.0' target 'Test' do