https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
p

Praveen Kumar

10/05/2023, 11:13 AM
before update the xcode i worked on xcode 14.3. after, update xcode 15. i get this errors. and, i can’t build my project. '> Task sharedlinkDebugFrameworkIosArm64 FAILED e: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld invocation reported errors The /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld command returned non-zero exit code: 1. output: -iphoneos_version_min has been renamed to -ios_version_min ld: unknown options: -sdk_version '
b

Blaž Vantur

10/05/2023, 11:20 AM
For us increasing kotlin to 1.9.10 version helped building project in xcode.
p

Praveen Kumar

10/05/2023, 11:31 AM
where i update the kotlin version in androidstudio?
s

Simon Buechner

10/05/2023, 11:35 AM
try
Copy code
kotlin("android").version("1.9.10").apply(false)
kotlin("multiplatform").version("1.9.10").apply(false)
in your build.gradle.kts
👌 1
p

Praveen Kumar

10/05/2023, 11:58 AM
i need to update gradle version?
b

Blaž Vantur

10/05/2023, 12:00 PM
android-gradle-plugin = "8.0.2"
p

Praveen Kumar

10/05/2023, 12:05 PM
are you already facing this issue? what is android studio version do u using now?
thank you mate😊. It’s perfectly working. @Simon Buechner @Blaž Vantur
🦜 1
h

Håkon Pettersen

10/07/2023, 10:29 AM
Helped us out too, Thanks 🙂
🦜 1
s

Simon Buechner

10/07/2023, 11:27 AM
No problem 😂 @Praveen Kumar
2 Views