Michal Klimczak
10/03/2024, 10:20 AMshared
module which loads a commonMain
dependency on pure kotlin domain
module. In the iOS apps, the shared
classes are visible, but domain
ones are not. I tried both api
and implementation
dependency attaching.Michal Klimczak
10/03/2024, 11:34 AMapi
is not enough.
binaries {
framework {
export(project(":domain"))
}
}
I wonder if this would also work, but didn't check
binaries {
framework {
transitiveExport = true
}
}