CocoaPods 无法更新 `master-1` 仓库
CocoaPods was not able to update the `master-1` repo
我在国内用cocoapods update libs,我县网络有限。
所以...
Podfile 添加一行:"pod 'SQLCipher' "
我 运行 :
pod install --no-repo-update
失败!
移除 'pod SQLCipher'
运行:
pod install --no-repo-update .
错误:
[!] CocoaPods was not able to update the `master-1` repo. If this is an unexpected issue and persists you can inspect it running `pod repo update --verbose`
运行:
pod repo update --verbose
正在加载...永远
我发现了问题。我通过添加 'SQLCipher.h' 'SQLCipher.c' 文件导入 'SQLCipher'。
然后出错。
通过删除这两个文件解决。
看起来你的规格回购在某个时候被编辑了,现在git无法更新它。
我建议删除并重新创建您的规范存储库;
运行 以下命令:
pod repo remove master
然后通过 运行
设置新的
pod setup
我在国内用cocoapods update libs,我县网络有限。 所以...
Podfile 添加一行:"pod 'SQLCipher' " 我 运行 :
pod install --no-repo-update
失败!
移除 'pod SQLCipher'
运行:
pod install --no-repo-update .
错误:
[!] CocoaPods was not able to update the `master-1` repo. If this is an unexpected issue and persists you can inspect it running `pod repo update --verbose`
运行:
pod repo update --verbose
正在加载...永远
我发现了问题。我通过添加 'SQLCipher.h' 'SQLCipher.c' 文件导入 'SQLCipher'。
然后出错。
通过删除这两个文件解决。
看起来你的规格回购在某个时候被编辑了,现在git无法更新它。
我建议删除并重新创建您的规范存储库;
运行 以下命令:
pod repo remove master
然后通过 运行
设置新的pod setup