I'm using the iOS-Universal-Framework XCode templates to create MyFramework. It works fine and when I add MyFramework to MyApplication, I have access to the public objects of MyFramework as expected.
The problem I have is that I am now linking the MyFramework against other static libraries : MailCore which is itself linked against some libs from iOSPorts. When I compile MyProject, it fails because the linker cannot find the MailCore static library.
I could import all the MailCore library into MyApplication but that's not what I want. How can I embed those libraries into MyFramework?
EDIT: To reformulate the question. If MyApplication uses MyFramework and MyFramework uses libCrypto.a, do I have to link MyApplication against libCrypto? iOS-Universal-Framework XCode claim that I MyFramework is supposed to embed the library and MyApplication does need to link only agains MyFramework but it's not working for me.
Thanks