basher
03/20/2019, 5:09 PMDuplicate JVM class name
issues working with `expect`/`actual`?pardom
03/20/2019, 5:10 PMbasher
03/20/2019, 5:11 PMbasher
03/20/2019, 5:14 PMtypealias
in a file in commonMain
, which was otherwise only filled with expect
declarations. This cause it to generate kt class for that file, when it otherwise wouldn't havepardom
03/20/2019, 5:14 PMr4zzz4k
03/20/2019, 5:28 PM*Kt
classes cause this. Had to switch to *Jvm.kt
files for platform sourcesets, as I saw kotlinx libraries are doing similar thing.russhwolf
03/20/2019, 5:44 PMr4zzz4k
03/20/2019, 5:46 PM@JvmName
+ @JvmMultifileClass
should also work?Dico
03/20/2019, 6:18 PMexpect
and regular declarations in the same file is my approach.