Hey folks, I have a project using KMP whose gradle...
# multiplatform
r
Hey folks, I have a project using KMP whose gradle tasks run successfully on Windows. After cloning the repo on my raspberry pi and trying to run the project using Gradle, I get the following error:
Failed to apply plugin 'org.jetbrains.kotlin.multiplatform'. > Unknown hardware platform: arm
And that surprises me, as Gradle should be based on the platform independent JVM... Why is that and is there a way to run gradle tasks for KMP on ARM?
no
it's not a Gradle issue, it's that Kotlin wants to download a native toolchain and JetBrains doesn't provide one for Linux/ARM
r
Hi! There is no explicitly configured native platform target in my project, but the browser. Perhaps that is important to mention. So there is no need for a native toolchain, right?
@ephemient 🙏