I have a XCFramework which contains slices for both arm64 and arm64e binaries, but some of my apps are only built for arm64.
Prior to Xcode 26, this was not an issue, despite the binary in Frameworks folder still containing the arm64e slice.
But now with Xcode 26 I get several errors when uploading to the Appstore:
- Validation failed
- Inconsistent arm64e support. The main bundle 'HackerNews.app' does not support arm64e. Verify that the all of the targets including [HackerNews.app/Frameworks/Sentry.framework] have consistent support for arm64e. (ID: 542eb011-2689-47fe-a5d5-d043342820a8)
- Validation failed
- Invalid architecture. The iOS 17.4 SDK or later is required for an arm64e slice. The bundle executable in “HackerNews.app/Frameworks/Sentry.framework” contains an arm64e slice with the iOS 17.2 SDK. (ID: 60f2cb75-e4be-4583-bebd-36d119275419)
Is this intended behavior with Xcode 26?