Hey guys, I’m getting this error when trying to bu...
# kotlin-native
f
Hey guys, I’m getting this error when trying to build my project with Kotlin Native.
Copy code
* What went wrong:
A problem occurred evaluating root project 'kotlin-game-engine'.
> Could not resolve all files for configuration ':detachedConfiguration1'.
   > Could not download kotlin-native-macos.tar.gz (:kotlin-native-macos:1.1.1)
      > Failed to download SHA1 for resource '<https://download.jetbrains.com/kotlin/native/builds/releases/1.1.1/macos/kotlin-native-macos-1.1.1.tar.gz>'.
         > Could not GET '<https://download.jetbrains.com/kotlin/native/builds/releases/1.1.1/macos/kotlin-native-macos-1.1.1.tar.gz.sha1>'. Received status code 403 from server: Forbidden
t
works for me, try
curl -v <https://download.jetbrains.com/kotlin/native/builds/releases/1.1.1/macos/kotlin-native-macos-1.1.1.tar.gz.sha1>
o
likely network issue on client side
f
I had erased the
~/.konan
folder to clean up my machine. The sync worked after I removed the Gradle Cache! Thanks!