Incorrect path for Pods.debug.xcconfig in Xcode?

后端 未结 17 1295
一整个雨季
一整个雨季 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:45

    1- Remove your Pods folder Podfile.lock and xcworkspace files root in your project.

    2- Open .xcodeproj

    3- Go to Build Settings and under Build Options search Always Embed Swift Standard Libraries

    4- Update its value with $(inherited)

    5- Close project and pod install again

    0 讨论(0)
  • 2021-01-30 03:46

    I had the same error and I fixed in following way

    1 - Goto your projected setting by blue icon of your project from left pan 2 - Select your project under the project 3 - Select Info window 4 - Check IOS deployement target. This target should be same as you set in general settings of your project (Pic 2).

    0 讨论(0)
  • 2021-01-30 03:48

    I had the same problem with Xcode 11 but I just updated CocoaPods and it worked.

    1. Update CocoaPods to latest version with sudo gem install cocoapods
    2. Run pod install again
    0 讨论(0)
  • 2021-01-30 03:52

    I had the same problem in Xcode 6.1.1. I did the following to solve it:

    1. Set the configuration file setting* "None" for the Pods related target.
    2. Close the .xcworkspace.
    3. run pod install again
    4. now open and build your .xcworkspace

    *The configuration file setting is found by selecting the project (not the target) and then the Info tab.

    0 讨论(0)
  • 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!

    0 讨论(0)
提交回复
热议问题