首先 打开项目中的IOS文件-->Podfile: 将9.0的注释 # 去掉 保存
之后 使用pod repo可以查看本地仓库的存放路径
master
- Type: git (master)
- URL: https://github.com/CocoaPods/Specs.git
- Path: /Users/x x x/.cocoapods/repos/master
1 repo
终端 open /Users/x x x/.cocoapods/repos 搜索libwebp找到文件夹 ,打开后有很多对应版本的 文件,根据错误信息打开指定文件比如我的是 1.1.0 ,打开后双击后缀.json文件:
"name": "libwebp",
"version": "1.1.0",
"summary": "Library to encode and decode images in WebP format.",
"homepage": "https://developers.google.com/speed/webp/",
"authors": "Google Inc.",
"license": {
"type": "BSD",
"file": "COPYING"
},
"source": {
"git": "https://github.com/webmproject/libwebp",
"tag": "v1.1.0"
},
将source --> git 替换成 "https://github.com/webmproject/libwebp.git"
保存 重新运行项目 问题 解决!!!!
网友评论