https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
j

Jan Stoltman

06/22/2019, 8:52 AM
Is it possible to disable on of the default compilations? Eg.
iosTest
?
f

Fudge

06/22/2019, 9:11 AM
Iirc there is a line that declares iOS as a target platform in build.gradle, try commenting that
iosArm64() I think
j

Jan Stoltman

06/22/2019, 9:56 AM
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.