Error 91167 in App Store Connect means that your app doesn't contain a binary for the arm64 architecture, which is required for Apple Silicon devices. Despite the "Complete" status, the warning indicates a potential issue that needs to be addressed.

When uploading an app to App Store Connect, you may encounter the following warning:
91167: Missing architecture. The “.app” bundle doesn't include an arm64-capable binary.*
This means that your .app bundle lacks support for the arm64 architecture, which is used on modern Apple devices—such as iPhone, iPad, and Mac with M1/M2/M3 chips.
How to interpret the screenshot
The screenshot shows:
A green circle with a checkmark indicates a "Complete" status, meaning the app has passed the automatic verification.
A yellow triangle with an exclamation point indicates a warning, not an error. It doesn't block publishing, but it signals a potential incompatibility.
Most common causes:
You built the app only for x86_64 (simulator or Intel Mac).
You disabled Standard Architectures in Xcode preferences.
You are using third-party libraries that don't support arm64.
1. Enable Standard Architectures support
Open Xcode → Build Settings → find the Architectures setting and make sure it's set to:
$(ARCHS_STANDARD)
This ensures that the binary is built with arm64 and x86_64 support.
2. Check Build Active Architecture Only
For the Release configuration, set:
Build Active Architecture Only = NO
This will build all target architectures, not just the current one.
3. Ensure third-party libraries support arm64
If you're using CocoaPods, Carthage, or Swift Package Manager:
Check that dependencies aren't restricted to the x86_64 architecture.
If necessary, rebuild them with arm64 support.
4. Manually verify the binary
In the terminal, run:
#bash
lipo -info YourApp.app/YourApp
Expected result:
Architectures in the fat file: YourApp are: arm64 x86_64
If arm64 is missing, the app won't run on Apple Silicon devices.

Yes, App Store Connect allows publishing if there are no critical errors. However:
The app may not run on real devices.
You risk being rejected during Apple's manual review.
Game: Perform tasks and rest cool. 4663 people play!
Play gameGame: Perform tasks and rest cool. 5046 people play!
Play gameCongratulations on leveling up in your gaming adventures!
Read moreIn Unity, the Physic Material component plays a key role in controlling the physical behavior of objects during collisio...
Read moreToday we'll be talking about itch.io — a true paradise for indie developers and anyone who loves unique games. Here you...
Read more