Missing files warning from Pods

I needed to remove my project's library added with cocoa pods.

To achieve this, he took his name from the pod's file and ran the pod update command .

The library has been removed, however xcode will show me warnings about missing files.

enter image description here

How can I remove this?

+3


source to share


2 answers


Finally encountered a bug. It doesn't have to be something straight from cocoapods , but my SVN repository. These files were added to my svn repository, soo after deleting them via cocoapods, svn is still looking for the same files. The solution was to manually remove them with:svn delete "nameFile"



+5


source


Yes. Sigh. In my case it was Xcode 8 screwing. After I checked out all the changes on git, these warnings went away.



It kind of pisses me off because I don't check the code at all, which contains a ton of warnings ... so it took me a while to find it.

+1


source







All Articles