https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
d

Dirk Hoffmann

04/22/2021, 11:23 AM
did my research, but am not sure, so I'm asking here: what "kind" of dependencies are okay/work to be used in
sourceSets.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
?
1
t

Tomasz Krakowiak

04/22/2021, 12:02 PM
Is there support for pure Kotlin libs? That would be very useful, but I don't think it's supported yet.
😭 1
p

Pavel Sidyakin

04/22/2021, 1:22 PM
2 Views