After removing Cocoa Pods during compilation, a Missing file error occurs. Tell me what to do to remove these warnings. As an example, I used this example - https://stackoverflow.com/questions/16427421/how-to-remove-cocoapods-from-a-project
1 answer
If it is simple: just need to commit and re-open the project!
These warnings are not fact-based warnings, they report your SVN repository status. It is correct that the directories are not shown, because they no longer exist, CocoaPods stores the headers in the Pods/Headers/{Private, Public} .
You must update your working copy to reflect these changes.
- Option 1 : Make a new commit.
Option 2 : Use the terminal
svn upgrade
|