Hello everyone, how do you use multiple xcframewor...
# ios
m
Hello everyone, how do you use multiple xcframeworks exposing the same types? I have multiple modules and I want to export XCFramework per module. Multiple modules depend on common module which is exposed. For instance, this
Platform
enum is common, but appears compiled as 3 different instances. Is there a way to mitigate this?
h
Nope, you need to export only one umbrella module because each iOS framework is compiled as closed world.
1
m
That is what I currently have and it works, but I was hoping for separated libs. Thanks for the help! 🙂
👍 1
p
It seems to refer to the same
umbrella module
technique.
m
True.
sharedLib {}
seemed promising. 😄
p
I see "it possible to share different dependencies in different binaries" Sounds good