bendb
09/23/2024, 7:32 PMkotlinNativeBundleConfiguration
in it - anyone have a clue as to where that might be coming from? (obviously without seeing the project it's impossible to say for sure, but I'm looking for ideas)Chris Lee
09/24/2024, 2:13 AMbendb
09/24/2024, 2:13 AMChris Lee
09/24/2024, 2:14 AMif (project.nativeProperties.isToolchainEnabled.get()) {
addKotlinNativeBundleConfiguration(project)
}
Chris Lee
09/24/2024, 2:15 AMbendb
09/24/2024, 2:18 AMChris Lee
09/24/2024, 2:18 AMkotlin.native.toolchain.enabled
property, which defaults to true, suggesting this is always there.bendb
09/24/2024, 2:19 AMbendb
09/24/2024, 2:19 AMChris Lee
09/24/2024, 2:20 AMbendb
09/24/2024, 2:21 AMAlexander.Likhachev
09/24/2024, 8:49 AMDmitrii Krasnov
09/24/2024, 9:28 AMkotlinNativeBundleConfiguration
was presented in KT-49268. Since 2.0.0
we moved downloading Kotlin Native bundle from Gradle configuration phase to execution phase.
When you set kotlin.native.toolchain.enabled=false
you return the old behaviour, which is considered as deprecated and will be removed in future releases.Dmitrii Krasnov
09/24/2024, 9:31 AMbendb
09/24/2024, 2:41 PM