I have an Xcode project that produces an iOS framework. I have two versions of binaries I want to produce - one for internal use, which has no licensing requirements, and one for external use which has licensing requirements.
I figured I would make two targets for this with different swift defines to turn on licensing or not.
But it seems like I have to produce the frameworks with different names, which leads to issues with using import in other projects. I have to either use the one name, or the other name.
Is there a way I can produce two targets with the same name - as in, direct where the binary is produced?