When you have a multi-module project, are there an...
# multiplatform
j
When you have a multi-module project, are there any recommendations on how to access some of the sub-modules from Xcode? We’ve got a project with
composeApp
module and then a number of
feature/x
,
feature/y
,
feature/z
,
shared/designsystem
, etc modules that support that. We can see that you can create frameworks for each of these and add them to the Xcode project. However when a more than 1 feature module uses the design system for example, and we want to use it directly in Xcode as well then we get duplicate warnings and also crashes at runtime. We started exposing everything through a single framework made from
composeApp
however it’d be nice to split it up if we can as well as it’s quite a lot of extra work duplication to expose. Any help/suggestions appreciated. 🙇
If you search for "umbrella framework" you'll see some other examples too
j
Ah perfect. Thanks. 😄