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

最近把以前代码放到新电脑上运行,在执行pod update之后build工程遇到如下提示:

  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. 

google一圈之后,找到两个解决方案:

  • 方案一:

关闭Xcode,重新执行pod install,之后再重新打开Xcode运行。

  • 方案二:

稍微复杂一点,删除以下文件:

xcworkspace
Podfile.lock
Pods文件夹
~/Library/Developer/Xcode/DerivedData路径下对应工程的文件夹

然后重新执行pod install

如果以上两个方案对你有用的话,恭喜你,下面的可以不用看了,如果你像我一样倒霉,仍然运行不起来的话,来来来,咱们继续。

  • 方案三
    1. 设置Configurations

    选中Project->选择Info tab->看看Configurations是不是被设置为 None了,如果是None的话请改为Pods,如图:


    解决cocoapods diff: /../Podfile.lock: No such file or directory_第1张图片
    设置Configurations
    1. 修改Pods脚本文件路径
    2. 右键工程根目录下的xxx.xcodeproj文件,显示包内容
    3. 双击打开project.pbxproj文件
    4. 查找"Pods-resources.sh", 把路径改为如下红框处:


      解决cocoapods diff: /../Podfile.lock: No such file or directory_第2张图片
      修改Pods脚本文件路径
    5. 重新打开工程(双击workspace文件),到此应该是能正常编译运行了,如果还是不行,期待你提出方案四_
  • 方案四:

移除cocopods后重新安装
1、打开终端,运行sudo gem install cocoapods-deintegrate安装快速解除项目cocopods依赖的库
2、安装成功后,cd到你项目的更目录运行pod deintegrate解除项目cocopods依赖
3、运行pod install,重新安装cocopods

你可能感兴趣的:(解决cocoapods diff: /../Podfile.lock: No such file or directory)