Hey all, I'm sure I may be missing something speci...
# multiplatform
j
Hey all, I'm sure I may be missing something specific to my gradle setup, but has anyone encountered an error of
Could not find :kotlin-native-prebuilt-macos-x86_64:1.7.21.
when trying to compile a shared module for kotlin multiplatform mobile? I know it's part of the 1.7.21 release (because I see it here https://github.com/JetBrains/kotlin/releases) but gradle isn't finding it, maybe my repositories aren't setup right?
Note that it was compiling with 1.7.10 before but I'm trying to bump some versions, because I was getting the same error in a Github actions but my local environment was fine: https://github.com/Matrix159/Materialized-Smite/actions/runs/3550050095/jobs/5963073274 Job run link for context with associated repo
Looks like I figured it out, I bumped the android gradle plugin version and it helped 🤷
But still somehow fails in the Github action environment 💢
a
For me setting the
depedencyResolutionManagment.respositoriesMode
to prefer project in settings.gradle helped
a
212 Views