How can I add more architectures to my app using Xcode? I made it using beeware and it is made for iOS.
Architecture for app
Could you explain what you mean by "more architectures" ?
Do you mean target more platforms ? Which ?
The default project created from Xcode > New Project is configured correctly, and there's no need to vary from that configuration. For reference, the relevant build settings are:
- Architectures (
ARCHS):$(ARCHS_STANDARD) - Build Active Architectures Only (
ONLY_ACTIVE_ARCH):Yesfor Debug configurations,Nofor Release configurations - Excluded Architectures (
EXCLUDED_ARCHS): No value
Note: Valid Architectures (VALID_ARCHS) is a deprecated build setting, and shouldn't be set by a project any longer, though older projects may have it set. If it is set in a project, this Technote has a small section on how to unset it correctly.
— Ed Ford, DTS Engineer
but every time I add it it keeps saying that I only have arm64. I am on a apple silicon Mac mini.
What says that? Can you share a screenshot? And have you verified the build settings are set as I highlighted?
— Ed Ford, DTS Engineer