My organization delivers an xcframework, let's call it MyFramework.xcframework. This framework also depends on another local framework, SecondFramework.xcframework.
We want to deliver the MyFramework using Swift Package Manager to our customers. The SecondFramework is embedded within MyFramework. Then the customer only needs to care about MyFramework.
Our issue is that apps using our Swift Package fail to recognize the SecondFramework, displaying the message "SecondFramework module not found."
Is this not possible or currently supported in SPM? Or do we need to change our approach?
I appreciate any help or pointers.
Thanks!