1>搜索不到第三方
`[!] Unable to find a pod with name, author, summary, or descriptionmatching '······'`
分析:
CocoaPods执行pod install时,系统会默认操作pod setup,然而由于中国强大的墙可能会pod setup不成功。
解决方法 1
这时就需要手动执行pod setup指令,如下:
终端输入:pod setup
会出现 :Setting up CocoaPods master repo,
稍等几十秒,最底下会输出 Setup completed。说明执行pod setup成功。
分析: 如果完成步骤1 pod search操作还是搜索失败,是因为之前执行pod search生成了search_index.json 文件,干扰了你第二次搜索,删除即可
解决方法2
终端输入:rm ~/Library/Caches/CocoaPods/search_index.json
或者
Finder--> 前往文件夹 --> 输入“~/Library/Caches/CocoaPods” --> 删除目录下“search_index.json”文件。
2、pod 报错
The 'Pods-Union' target has libraries with conflicting names: libcrypto.a and libssl.a.
解决:导入的第三方,有个已经不在维护了,删除过期第三方
网友评论