I’m not aware of anything specific that would cause Xcode 27 beta to produce more of these problems than previous versions of Xcode. However, Xcode is a big chunk of code, and each major release has a bazillion changes, so it’s not a huge surprise that you’re seeing this.
If this were indicative of an Xcode problem then I’d be inclined to spend time digging into exactly what changed. However, that doesn’t seem warranted given that these are your classes. The solution is to fix your build setup so that only one copy of each class is present in any given process. Typically that involves moving the implementation of the class into a framework so that all users of the class can import that framework.
Now, as you work on that change it’s possible that you might uncover something that Xcode 27 beta is doing wrong. If so, lemme know, because uncovering weird issues like this is the whole reason we have a beta seed program.
Good luck!
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"