After getting IntelliJ to generate a new project f...
# intellij
n
After getting IntelliJ to generate a new project from the Native | Gradle template it includes a inaccurate comment in the build file:
Copy code
// For ARM, should be changed to iosArm32 or iosArm64
With Kotlin Native there are ARM based targets for other OS's besides iOS (eg linuxArm32Hfp, and linuxArm64), and iOS development can't be done on a Linux PC. The contents of the comment should be based on what host OS is used.
a
Kotlin 1.4 IDE plugin will have a new wizard for generating MPP projects, it should support generating an appropriate target for the current system.
👍 1