Incorrect path for Pods.debug.xcconfig in Xcode?

后端 未结 17 1296
一整个雨季
一整个雨季 2021-01-30 03:15

so I used Venmo/Synx on my Xcode project with CocoaPods, and it completely screwed everything up.

I was able to fix the Manifest.lock and Podfile.lock errors, but now I

17条回答
  •  迷失自我
    2021-01-30 03:53

    For me, this caused after I updated cocoapods. So, I downgraded and the build worked again.

    To downgrade, first list of all your versions:

    sudo gem list cocoapods
    

    Then specify the you want to delete (for me was 1.8.4):

    sudo gem uninstall cocoapods -v 1.8.4
    

    Then, with 1.5.3 worked!

提交回复
热议问题