I have an objective c based xcframework that I would like to start adding swift classes to. I can use the swift classes with the objective c using the automatically created header but I can't figure out how to get the swift classes to use the objective c.
I know that I can't use the bridging header because my project is a framework. My framework already has a public module map but I have been trying to add a private module map so that I can use my frameworks objective c private classes in swift. But I haven't been able to get it to work.
I've followed the example of this repo but can't get it to work.
The furthest I've gotten is to an error that says Redefinition of module 'MyFramework_Private'
Any advice you can give would be greatly appreciated.