From 3891715db5c93a916495f14969ab6988e2cc213e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20Doln=C3=ADk?= Date: Thu, 23 Nov 2023 13:08:01 +0100 Subject: [PATCH] Fix description for UnknownCInteropFramework error type. --- .../kotlin/co/touchlab/skie/sir/type/SkieErrorSirType.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SKIE/compiler/kotlin-plugin/src/kgp_common/kotlin/co/touchlab/skie/sir/type/SkieErrorSirType.kt b/SKIE/compiler/kotlin-plugin/src/kgp_common/kotlin/co/touchlab/skie/sir/type/SkieErrorSirType.kt index 7d4fff8e..8c8abb9f 100644 --- a/SKIE/compiler/kotlin-plugin/src/kgp_common/kotlin/co/touchlab/skie/sir/type/SkieErrorSirType.kt +++ b/SKIE/compiler/kotlin-plugin/src/kgp_common/kotlin/co/touchlab/skie/sir/type/SkieErrorSirType.kt @@ -69,7 +69,7 @@ sealed class SkieErrorSirType( ) override val errorMessage: String = - "Unknown Swift module for type '$replacedTypeKotlinName'. " + + "Unknown Swift framework for type '$replacedTypeKotlinName'. " + "This problem occurs when custom Cinterop bindings are used because those do not contain the name of the Framework that provides implementation for those binding. " + "The name can be configured manually using the SKIE Gradle configuration key 'ClassInterop.CInteropFrameworkName' in the same way as other SKIE features." }