Dirk Hoffmann
04/22/2021, 11:23 AMsourceSets.commonMain.dependencies { ... }
?
a) dependencies on MPP libs that have all(!) the used(!) platform-specific variants of libraries with suffixes such as -jvm
, -macosX64
, -linuxX64
and -mingwX64
supported.
b) pure kotlin libs, that do not have any (transitive) dependencies on any platform specific things (?)
As I learned a) is true (is it?), but what kind of b) dependencies am I "allowed? to use out-of-the-box in commonMain
that for sure will give me "no issues" if I wanna have native executables for let's say macosX64
, linuxX64
and mingwX64
?Tomasz Krakowiak
04/22/2021, 12:02 PMPavel Sidyakin
04/22/2021, 1:22 PM