I have 4 different XCode projects for different modules on different branches of git. I want to make a common project/app through which i can call all 4 modules. There modules are to be displayed like list in table. Through a common login all modules will be called. How can i do this?
what i have Done till now: I have taken all modules checkout and added them in a single workspace. But without making them framework, i am unable to call them from the common project. Also my modules are large and framework classes to accessed need to public. So is there not any other good way to do this. Hope i am able to clearify my problem..
thanks

You've said above that
which suggests that each of your 4 projects is compiling its source files into an Application.
You seem to be building your own new application, so you don't care about whatever each of these four projects is building. You only care about the source files.
.swiftfiles which contain the objects you're interested in.