The teams developing frameworks for our iOS app are migrating from Cocoapods to Carthage.
Under Cocoapods, I could set up dependencies as \"development pods\". For e
I believe Carthage doesn't have something similar to "development pods" yet.
But you could simulate "development pods" just following these steps:
Steps:
Build Phases -> Run Script -> Input Files too )General tab of the target you want to run, add the framework under Linked Frameworks and Libraries (it is going to take the one added from the .xcoproj)carthage bootstrap in the framework's repo you want to add locally.That's it.
After that you will be able to run your project and update framework's code in the same workspace.