hi, I'm trying to work around <https://youtrack.je...
# multiplatform
t
hi, I'm trying to work around https://youtrack.jetbrains.com/issue/KT-65542 but it seems the latest release of Kotlin Multiplatform implicitly pulls in a version of Kotlin older than 1.9.23. Is there a recommended way to explicitly force a version of Kotlin? edit: resolved. Please see thread
in the build log, I see:
Copy code
Showing Recent Messages
Kotlin/Native distribution: /Users/treitter/.konan/kotlin-native-prebuilt-macos-aarch64-1.9.10
so it's not resolving a newer one for some reason - maybe the binaries haven't been built for Kotlin Native/macOS/Apple Silicon?
it seems like my inclusion of
kotlinx-serialization
1.9.10 was pinning Kotlin itself to that version and I'm fine now that it's set to 1.9.23
👍 1