1
votes

We are trying to remove the Zendesk support previously used in our app, however when we removed it, we ended up with around 200 alerts, saying "(file path) is missing from the working copy." Although this is not effecting our app from running, the alerts are annoying, we have tried updating Xcode but no luck.

Does anyone know how to remove these alerts?

4
please provide more detail. - Ujesh
we removed the framework, but now we get alerts saying ...'is missing from working copy - user4174219

4 Answers

3
votes

Xcode warns you that you have removed files from the working copy, which are checked in to your repository (git?).

Simply commit your changes to get rid of the warnings.

0
votes

This error normally occurs when you haven't committed. Simply try committing current changes!

If that does not remove the error try the following:

Try cleaning the project.

If that does not work do the following:

  1. Go to Build phases.

  2. Link Binary with libraries.

  3. Select your framework that you want to remove and press minus button down there.

Failing that, try deleting derived data by doing Shift+Alt+Command+K

0
votes

enter image description here

In your project setting -> build setting -> search path.

Check there if your SDK path are there then remove it from framework search path or Header search path.

0
votes

The warning will disappear as soon as you commit your changes (Xcode 8)