美文网首页
2022-06-30 多个不同版本pod库

2022-06-30 多个不同版本pod库

作者: 我是小胡胡分胡 | 来源:发表于2022-06-30 16:00 被阅读0次

    [!] There are multiple dependencies with different sources for FDFullscreenPopGesture in Podfile:

    • FDFullscreenPopGesture (from git@github.com:forkingdog/FDFullscreenPopGesture.git)
    • FDFullscreenPopGesture

    开始以为是
    podspec s.dependency 'FDFullscreenPopGesture'
    和podfile 中的
    pod 'FDFullscreenPopGesture', git: 'git@github.com:forkingdog/FDFullscreenPopGesture.git'

    冲突。

    其实是 Podfile 里面写了两个
    //这个在一个子ruby文件里面
    pod 'FDFullscreenPopGesture'
    //这个在Podfile里面
    pod 'FDFullscreenPopGesture', git: 'git@github.com:forkingdog/FDFullscreenPopGesture.git'
    藏在子ruby文件的pod被忽视了。

    去掉这个就好了。

    相关文章

      网友评论

          本文标题:2022-06-30 多个不同版本pod库

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