We're incorporating a third-party framework into our iOS app. It is provided to us as two separate frameworks, one with arm64 code (for devices), and one with x86 code (for the simulator).
How do I include these frameworks in my iOS Xcode project such that if I target the simulator, the simulator version of the framework gets linked and embedded, and if I target a dervice, the device version gets linked and embedded?
Most people online try to make a "fat" Framework, but as I understand it, cross-platform Frameworks have never been supported by Xcode.
How does Xcode handle this with the OS Frameworks? I guess you never have to embed those, but I do nee to embed my framework.
Thanks.