Incorrect path for Pods.debug.xcconfig in Xcode?

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

    A few things worth trying:

    • As Keith mentioned above, you definitely want to exclude Pods from synx.
    • You almost certainly do not want to override the PODS_ROOT build setting.
    • I've seen similar errors to yours in a project with multiple targets. Make sure that your Podfile includes a link_with setting that specifies all your app targets.
    • If you have at least one test target, consider using your Podfile to explicitly import all your app pods to both your application and test targets.
    • I've not too much experience using a custom xcconfig with CocoaPods, but you might first try removing your xcconfig and allowing CocoaPods to generate its own first.

提交回复
热议问题