Is it possible to disable on of the default compil...
# multiplatform
j
Is it possible to disable on of the default compilations? Eg.
iosTest
?
f
Iirc there is a line that declares iOS as a target platform in build.gradle, try commenting that
iosArm64() I think
j
I would like to keep the
iosMain
, I just have to disable
iosTest
I can't compile
iosTest
because of lack of mockk support for K/N, so I've created
mockklessTest
and now I have to disable normal
iosTest
so that the gradle build task could pass.