Francis Mariano
01/27/2021, 6:50 PMiosArm32 {
binaries {
framework {
baseName = "shared"
}
}
}
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?Kris Wong
01/27/2021, 6:56 PMFrancis Mariano
01/27/2021, 7:19 PMsourceSets {
.......
val iosArm32Main by getting {
dependsOn(iosMain)
}
}
BUILD SUCCESSFUL!!!!
Tks so much