Roland
10/10/2023, 12:12 PM:Module_1
:Module_2
:Module_2
depends on :Module_1
If I now call e.g. a data class from framework in xcode it's named Module_1MyDataclass.
Tested on kotlin 1.9.10 and 1.9.20-Beta2
How to avoid this behavior?mkrussel
10/10/2023, 12:19 PMRoland
10/10/2023, 12:47 PMval commonMain by getting {
dependencies {
implementation(project(":module_1))
}
}
For both modules are frameworks created.
Do you have any example for multi module I'm KMP?mkrussel
10/10/2023, 1:06 PM