Marko Novaković
07/06/2023, 8:10 AMfile.common.kt
, file.android.kt
, file.ios.kt
in between the file name and kt
extension?Adam S
07/06/2023, 8:17 AMsrc/commonMain/kotlin/MyUtils.kt
and src/jvmMain/kotlin/MyUtils.kt
then when creating a JAR both files will compile to MyUtilsKt.class
, so they will clash. Renaming them to MyUtils.jvm.kt
and MyUtils.common.kt
will avoid this problem.Marko Novaković
07/06/2023, 9:03 AMLandry Norris
07/06/2023, 2:13 PM