What's the equivalent of "development pods" under Carthage?
I believe Carthage doesn't have something similar to "development pods" yet.
But you could simulate "development pods" just following these steps:
Steps:
- Add the .xcodeproj to your workspace
- Remove all the dependencies you have in your project of the framework you added in step 1. (probably you may need to remove it from
Build Phases -> Run Script -> Input Files
too ) - Go to
General
tab of the target you want to run, add the framework underLinked Frameworks and Libraries
(it is going to take the one added from the .xcoproj) - (optional) you may need to run
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.