diff --git a/multiplatform-crypto/build.gradle.kts b/multiplatform-crypto/build.gradle.kts index 60bd5a9..0ffb910 100644 --- a/multiplatform-crypto/build.gradle.kts +++ b/multiplatform-crypto/build.gradle.kts @@ -204,7 +204,9 @@ kotlin { targets.withType { compilations.getByName("main") { println("Setting native sourceset dependancy for $name") - if (this@withType.name.contains("ios").not()) { + if ((this@withType.name.contains("ios") || + this@withType.name.contains("ios")).not() + ) { println("Setting native sourceset dependancy for $this@withType.name") defaultSourceSet.dependsOn(nativeMain) }