What\'s the right way of removing CocoaPods from a project? I want to remove the whole CocoaPod. Due to some limitations imposed by my client I can\'t use it. I need to have
Podfile
, Podfile.lock
, the Pods
folder, and the generated workspace..xcodeproj
, remove the references to the Pods.xcconfig
files and the libPods.a
file.Pods.framework
.The only thing you may want to do is include some of the libraries that you were using before. You can do this by simply draging whatever folders where in the pods folders into your project (I prefer to put them into my Supporting Files folder).
It worked for me.