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 3a17171 commit 2d603e7Copy full SHA for 2d603e7
firebase-auth/build.gradle.kts
@@ -111,7 +111,6 @@ kotlin {
111
projectDir.resolve("src/nativeInterop/cinterop/Carthage/Build/$it.xcframework/${konanTarget.archVariant}")
112
}
113
)
114
-
115
binaries {
116
getTest("DEBUG").apply {
117
linkerOpts(nativeFrameworkPaths.map { "-F$it" })
@@ -186,6 +185,14 @@ kotlin {
186
185
187
val jsMain by getting
188
+
189
+ if (!runIosTests) {
190
+ tasks.forEach {
191
+ if (it.name.contains("ios") && it.name.contains("test")) {
192
+ it.onlyIf { false }
193
+ }
194
195
196
197
198
signing {
0 commit comments