博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 'The sandbox is not sync with the Podfile.lock'问题解决
阅读量:6216 次
发布时间:2019-06-21

本文共 516 字,大约阅读时间需要 1 分钟。

问题描述:

github下载的Demo,很多时候使用到CocoaPods,有的时候因为依赖关系或者版本问题不能编译运行。出现例如 The sandbox is not sync with the Podfile.lock 问题时候,如下所示

diff: /../Podfile.lock: No such file or directory  diff: Manifest.lock: No such file or directory   error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.`

解决方案

关闭当前的工作空间,删除掉文件夹中的workspace,然后重新pod install,install完成之后,通过workspace打开工作空间,clean+build即可,如下所示

rm -rf MyProject.xcworkspace  pod install

在pod install之前,请确保已经执行pod setup命令。

参考链接:

转载地址:http://oplja.baihongyu.com/

你可能感兴趣的文章
FireMonkey 源码学习(2)
查看>>
Visual Studio 2013 (vs2013)中“向前定位”,“向后定位”按钮
查看>>
属性选择器
查看>>
QEMU KVM libvirt 手册(3) - Storage Media
查看>>
数学图形(1.18)Poinsot's spiral螺线
查看>>
彩色照片转换为黑白照片(Color image converted to black and white picture)
查看>>
ORA-00313错误 及其 解决方法
查看>>
如何编写程序设置Android来电铃声
查看>>
Extjs4.0以上版本智能提示的方法
查看>>
有用的HTML+CSS片段
查看>>
Android -- 程序判断手机ROOT状态,获取ROOT权限
查看>>
扁平风格手风琴式菜单效果
查看>>
【编程题目】n 个数字(0,1,…,n-1)形成一个圆圈,从数字 0 开始
查看>>
android LinearLayout添加分隔线
查看>>
WinForm TextBox自定义扩展方法数据验证
查看>>
pthread_exit
查看>>
16、编写适应多个API Level的APK
查看>>
《深入浅出数据分析》-利用Excel的Solver求橡皮玩具的最大利润
查看>>
hdu----(2586)How far away ?(DFS/LCA/RMQ)
查看>>
jQuery数组处理汇总
查看>>