0
点赞
收藏
分享

微信扫一扫

pod 指定SDK下载路径,下载或者更新找不到https://github.com/xxx/xxx.git‘的时候

WikongGuan 2022-04-29 阅读 27
git

在git上找到对应的“xxx”的sdk的地址,然后查看对应地址,把之前pod地址改为指定位置即可

pod 版本库名, :git => 版本库地址

pod 'xxx' , :git => 'https://github.com/xxx/xxx.git'

如果下载下来发现缺少了文件,应该是未指定版本号

pod 'xxx' , :git => 'https://github.com/xxx/xxx.git' , :tag => '1.0.0'

举报

相关推荐

0 条评论