After sync the gradle file the tasks to arm32 architecture were enabled. However, the task compileKotlinIosArm32 fails when executed.
I noted that the expect/actual was not resolved for shared.iosArm32Main
(Create actual class for module shared.iosArm32Main)
Can any help me?
k
Kris Wong
01/27/2021, 6:56 PM
you need configure the target's source sets to depend on iosMain and iosTest, assuming you have those source sets
f
Francis Mariano
01/27/2021, 7:19 PM
ok, I will try here, tks
Francis Mariano
01/27/2021, 7:37 PM
Copy code
sourceSets {
.......
val iosArm32Main by getting {
dependsOn(iosMain)
}
}