Hi, question regarding an umbrella framework on io...
# multiplatform
f
Hi, question regarding an umbrella framework on ios: 1. When creating an xcframework with the umbrella structure with many submodules - is there an easy way of putting the submodules in different namespaces? Since the umbrella structure seems to be the way to go, it would be nice to have the monolit a little bit more manageable on the ios side, im thinking something like:
Copy code
import monolit
...
func test() {
    let a = monolit.submoduleA.object1
    let b = monolit.submoduleB.object2
}
...
2. How would you tackle duplication in a good way? Lets for example say that both submoduleA and submoduleB has two different data models, but both are called "Product". Right now the compiler would throw a duplication error since everything gets merged together in the umbrella.