Hey,
is it possible to have more than one common module to structure dependencies more precisely?
Let’s say we have the common module with domain logic. In a multiplatform kotlin-native (iOS) and android context it is possible to share some data code (e.g GitHub - russhwolf/multiplatform-settings: A Kotlin Multiplatform library for saving simple key-value data) or presenter logic as well. The presenter and data things are common module things and should only depends on the common domain logic (but not the presenters on data or vice versa).
This could be possible if I were able to have more than one common module. I don’ t know how to configure this. Is this possible?