spierce7
11/24/2020, 9:26 PMkotlin("multiplatform")
projects depend on other gradle modules in the repo that are kotlin("jvm")
? I thought they could, but I’m seeing problemsCasey Brooks
11/24/2020, 9:30 PMjvmMain
sourceSet to depend on the other kotlin("jvm")
module. Otherwise, it’s going to try and match up all the targets of the multiplatform lib to the jvm lib using Gradle Metadata, and will fail to find matching variantsArkadii Ivanov
11/25/2020, 12:33 AMjvmCommonMain
. This source set can depend on a JVM module.spierce7
11/25/2020, 2:26 AM