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
A few things worth trying:
Pods
from synx.PODS_ROOT
build setting.Podfile
includes a link_with
setting that specifies all your app targets.Podfile
to explicitly import all your app pods to both your application and test targets.xcconfig
with CocoaPods, but you might first try removing your xcconfig and allowing CocoaPods to generate its own first.For me, changing Build system
to Legacy
in File
-> workspace settings
did the trick
I had the same error while trying to build my project for the first time. This is how I resolved it:
Open the project and delete the “Pods” folder that should be red.
Reopen and build the project, I think it's good to go!
In my case, I deleted my Podfile, Podfile.lock.
Run pod init
, then copy all pods to new Podfile, then run pod install
again and it's worked.
I think it's happened for the differences from folder paths in the old project (for me, I cloned another project from Git repo).
If your path to pods in error is wrong try this:
pod deintegrate
Podfile.lock
, Pods
, <Project>.xcworkspace
<Project>.xcodeproj
Pods
project on left sidepod install