I have an umbrella module `shared` which contains ...
# compose-ios
r
I have an umbrella module
shared
which contains sub modules
ui
and
data
. I am exporting the sub-modules in the parent module as a framework to use on iOS. The problem I have is that the iOS framework build doesn't run if I don't have any source code in the
shared
module. I'm having to place a placeholder Kotlin file in
commonMain
just to get the frameworks to build. Is this by design or is there something obvious i'm missing out.
x
Yes. That is expected in current version
1