Configuring Cocoapods with an existing static library and iOS application
I'm having trouble getting my workspace to compile correctly with Cocoapods. There are 3 projects in the workspace, each with their own target: libPods - Cocoapods static library with all the external dependencies libCommon - My static library where I keep all my shared code (base controllers, networking code, common UI, etc) myApp - My iOS application Both libCommon and myApp require the external dependencies from the libPods. Originally I thought it would work like this: libPods builds libCommon links against libPods and builds myApp links with libCommon and builds In this scenario libCommon