Kirill Zhukov
03/03/2023, 9:57 PMjvmTest
runs commonTest
targeting JVM and runs tests
• iosSimulatorArm64Test
doesn’t seem to compile/run commonTest
targets iOS target 🤔
I have framework-engine
dependency added to commonTest
, anything I might be missing?ios()
iosSimulatorArm64()
sourceSets {
val iosMain by creating
val iosTest by creating
targets.forEach {
getByName("${it.name}Main").dependsOn(iosMain)
getByName("${it.name}Test").dependsOn(iosTest)
}
}
Adam S
03/04/2023, 8:34 AMKirill Zhukov
03/04/2023, 10:36 AM