I am creating a framework to abstract functionality around an API to be distributed to clients.
I have created a Cocoa Touch Framework and via following this tutorial. I have ended up creating a aggregate target that builds the fat framework to be imported into other projects. I am trying to import third party frameworks into the target to be able to use.
Specifically, I am trying to use AlamoFire and SwiftJSON as part of my framework.
The problem is when I try to build the framework aggregate target, I get an error:
No such module 'AlamoFire'.
I have tried adding the framework to the Target dependencies of the aggregate target.
There doesn't seem to be much information on creating frameworks, so I am at a dead end.