The workspace does not contain related files from the working copy.

Not Pro with Xcode, here is my problem. I have a main project and a Pods project. The last time it was checked in 1 year ago with the old coco-pod and the older Xcode.

Now I installed everything and registered in the latest Xcode with the latest cocoapod. I was able to update the pods and everything compiles and works great. However, I get these strange warnings. How to clean it and remove from it?

I believe this is due to how Pod linking / headers were used to work and how it works now. But how to clean it?

file:///Users/c/Documents/DMD/Pods/BuildHeaders/GoogleProtobuf/google/protobuf/io/coded_stream_inl.h: warning: Missing file: /Users/c/Documents/DMD/Pods/BuildHeaders/GoogleProtobuf/google/protobuf/io/coded_stream_inl.h is missing from working copy

enter image description here

+7
objective-c xcode
source share
2 answers

I found him. I am new to Xcode, so I did not understand what this really means. This is due to source control. I had these files verified earlier, but they are not needed, and Xcode manages it, but then complains that I do not have them locally, but they are in SVN. I had to make these "deletions", and all is well.

It is clear that I will not delete the question, perhaps this will help another beginner

+17
source share

in the terminal.

 cd yourProject/Pods 

then

 sudo find . -type d -name .svn | xargs rm -rf 

delete all svn files.

0
source share

All Articles