您的位置:首页 > 移动开发 > IOS开发

解决cocoapods diff: /../Podfile.lock: No such file or directory

2016-10-25 09:29 507 查看
 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.

解决方法:

在工程设置中的 Build Phases 下修改 Check Pods Manifest.lock 的路径

${PODS_ROOT}/../Podfile.lock"
"${PODS_ROOT}/Manifest.lock --> 

${SRCROOT}/Podfile.lock"
"${SRCROOT}/Pods/Manifest.lock
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iOS