Hello, I've just tried updating to Kotlin 1.8.0 (f...
# ios
j
Hello, I've just tried updating to Kotlin 1.8.0 (from 1.7.2) which was released today, and I get this error when building from Xcode:
Copy code
Could not create task ':shared:linkDebugFrameworkIosArm64'.
> Could not create task of type 'KotlinNativeLink'.
   > Configuration with name 'iosArm64DebugFrameworkExport' not found.
I just have
./gradlew :shared:embedAndSignAppleFrameworkForXcode
in a build phase script as is recommended Adding the info or debug flags desn't provide any useful extra information as far as I can see. I'm not really sure how to go about debugging this, or seeing why the configuration has not been created? I see in the release notes for 1.8.0 it says:
Copy code
The Kotlin Gradle plugin API is binary-compatible with previous releases. There are, however, some source and ABI-breaking changes in the kotlin-gradle-plugin artifact. Most of these changes involve additional generic parameters to some internal types. One important change is that the KotlinNativeLink task no longer inherits the AbstractKotlinNativeCompile task.
But I'm not sure if that is relevant nor how to get more info on it