IOS scheme is missing when I enter my project (Xcode 4.2)

In Xcode 4.2, when I create a new branch and open it, the iOS scheme existing in the Wizard is lost. Instead, I have a circuit for Mac 64 bit.

This happened several times in a row, and I process it by creating a new circuit, deleting the "Mac 64 bit" bit, and then renaming the new circuit to the original. I would rather fix something wrong. I installed something wrong - some preferences somewhere?

+6
source share
1 answer

I know this is an old question, but lately there seems to be no good question either. So, I am adding my solution for this.

The problem is that the circuit is not checked on another branch. If this is not the case, the circuit will disappear on others.

If you are wondering why this has not been verified, the scheme is local, unless you have specified Check for access "in Schema Management and the source is controlled on git.

After saving to a branch, to make this change visible in other branches, you need to extend it to the rest of the working branches.

I did this using the git command line, because the execution of this xcode is not so reliable, because it is under .xcodeproj.

+12
source

Source: https://habr.com/ru/post/912081/


All Articles