Skip to content

Commit 5c85236

Browse files
authored
Merge pull request #245 from muwasi/fix_crash_on_ios_with_remoteConfig
Fix crash on ios with remote config
2 parents 34ca25c + 5674516 commit 5c85236

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,12 +197,12 @@ subprojects {
197197
}
198198

199199
dependencies {
200-
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
201-
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2")
200+
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt")
201+
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2-native-mt")
202202
"androidMainImplementation"(platform("com.google.firebase:firebase-bom:29.0.1"))
203203
"commonTestImplementation"(kotlin("test-common"))
204204
"commonTestImplementation"(kotlin("test-annotations-common"))
205-
"commonTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
205+
"commonTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt")
206206
"jsTestImplementation"(kotlin("test-js"))
207207
"androidAndroidTestImplementation"(kotlin("test-junit"))
208208
"androidAndroidTestImplementation"("junit:junit:4.13.2")

firebase-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"@gitlive/firebase-common": "1.4.3",
2727
"firebase": "9.4.1",
2828
"kotlin": "1.5.31",
29-
"kotlinx-coroutines-core": "1.5.2"
29+
"kotlinx-coroutines-core": "1.5.2-native-mt"
3030
}
3131
}

firebase-auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"@gitlive/firebase-app": "1.4.3",
2727
"firebase": "9.4.1",
2828
"kotlin": "1.5.31",
29-
"kotlinx-coroutines-core": "1.5.2"
29+
"kotlinx-coroutines-core": "1.5.2-native-mt"
3030
}
3131
}

firebase-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"firebase": "9.4.1",
2727
"kotlin": "1.5.31",
28-
"kotlinx-coroutines-core": "1.5.2",
28+
"kotlinx-coroutines-core": "1.5.2-native-mt",
2929
"kotlinx-serialization-kotlinx-serialization-runtime": "1.3.0"
3030
}
3131
}

firebase-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"@gitlive/firebase-app": "1.4.3",
2727
"firebase": "9.4.1",
2828
"kotlin": "1.5.31",
29-
"kotlinx-coroutines-core": "1.5.2"
29+
"kotlinx-coroutines-core": "1.5.2-native-mt"
3030
}
3131
}

firebase-database/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"@gitlive/firebase-app": "1.4.3",
2727
"firebase": "9.4.1",
2828
"kotlin": "1.5.31",
29-
"kotlinx-coroutines-core": "1.5.2"
29+
"kotlinx-coroutines-core": "1.5.2-native-mt"
3030
}
3131
}

firebase-firestore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"@gitlive/firebase-app": "1.4.3",
2727
"firebase": "9.4.1",
2828
"kotlin": "1.5.31",
29-
"kotlinx-coroutines-core": "1.5.2"
29+
"kotlinx-coroutines-core": "1.5.2-native-mt"
3030
}
3131
}

firebase-functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"@gitlive/firebase-app": "1.4.3",
2727
"firebase": "9.4.1",
2828
"kotlin": "1.5.31",
29-
"kotlinx-coroutines-core": "1.5.2"
29+
"kotlinx-coroutines-core": "1.5.2-native-mt"
3030
}
3131
}

0 commit comments

Comments
 (0)