I have an static xcframework(staticframeworkA) that I would like to embed into a dynamic framework(DynamicframeworkB). Now I have to embed this dynamic framework to my main project. In main project it’s complaining about modules missing. The main app doesn’t able to get the reference of static framework. Spent almost 2 days on this. Any suggestions on how to fix this.

Why do you want to embed it? Once the static library is linked into the dynamic library in the framework, it’s symbols will be part of that dynamic library.

1 Like