Let's imagine - we have some SDK and a lot of released versions.
SDK includes static lib and headers, of course I can't build different versions in one project because of conflicts in class names etc...
We need to test all of them each time and purpose of testing NOT SDK itself.
I was asked to put all of released SDKs to one application and allow to switch between them.
I can create separate projects/targets and provide different ipa to install with different SDK's versions.
So my question - is that possible to create just ONE iOS project which generates iOS application to launch and switch between SDK versions to test? How?
Thanks in advance