If i have a module structure :shared :shared:c...
# kotlin-native
v
If i have a module structure :shared sharedcore :shared; ui And i have some pod dependencies in
:shared:core
and
:shared:ui
, which is only being used internally, as I am using Compose Multiplatform and not using any of those pod dependencies on the Native Swift Side
:shared
being the umbrella module ,do i need to add
:shared:core
,
:shared:ui
in the
iosApp/Podfile
like this
pod 'shared-core', :path => '../shared/core'
?