Bumping my Kotlin version from 1.5.31 to 1.6 in a ...
# javascript
c
Bumping my Kotlin version from 1.5.31 to 1.6 in a Multiplatform JS project seems to hit an Apple Silicon related build error. I’ll be able to test on an Intel Mac to confirm whether it is an ARM v Intel issue, but it seems likely based on the URL.
Copy code
Could not determine the dependencies of task ':kotlinNodeJsSetup'.
> Could not resolve all files for configuration ':detachedConfiguration2'.
   > Could not find node-14.17.0-darwin-arm64.tar.gz (org.nodejs:node:14.17.0).
     Searched in the following locations:
         <https://nodejs.org/dist/v14.17.0/node-v14.17.0-darwin-arm64.tar.gz>
In the meantime, has anyone else run into this or is there a workaround?
g
Did you try to build with rosetta instead?
c
It works fine on an Intel Mac, so it seems to be hosed on M1 only.
WA: Install node 16+ by yourself and deactive auto download
c
Nice, thank you!