We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43b455e commit 292ed88Copy full SHA for 292ed88
PowerSync/build.gradle.kts
@@ -1,5 +1,6 @@
1
import co.touchlab.faktory.artifactmanager.ArtifactManager
2
import co.touchlab.faktory.capitalized
3
+import co.touchlab.skie.configuration.SuspendInterop
4
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
5
import java.net.URL
6
import java.security.MessageDigest
@@ -40,6 +41,16 @@ kotlin {
40
41
}
42
43
44
+skie {
45
+ features {
46
+ group {
47
+ // We turn this off as the suspend interop feature results in
48
+ // threading issues when implementing SDK in Swift
49
+ SuspendInterop.Enabled(false)
50
+ }
51
52
+}
53
+
54
kmmbridge {
55
artifactManager.set(SonatypePortalPublishArtifactManager(project, repositoryName = null))
56
artifactManager.finalizeValue()
0 commit comments