Skip to content

Commit

Permalink
Merge pull request #245 from muwasi/fix_crash_on_ios_with_remoteConfig
Browse files Browse the repository at this point in the history
Fix crash on ios with remote config
  • Loading branch information
nbransby authored Mar 21, 2022
2 parents 34ca25c + 5674516 commit 5c85236
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,12 @@ subprojects {
}

dependencies {
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2")
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt")
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2-native-mt")
"androidMainImplementation"(platform("com.google.firebase:firebase-bom:29.0.1"))
"commonTestImplementation"(kotlin("test-common"))
"commonTestImplementation"(kotlin("test-annotations-common"))
"commonTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
"commonTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2-native-mt")
"jsTestImplementation"(kotlin("test-js"))
"androidAndroidTestImplementation"(kotlin("test-junit"))
"androidAndroidTestImplementation"("junit:junit:4.13.2")
Expand Down
2 changes: 1 addition & 1 deletion firebase-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@gitlive/firebase-common": "1.4.3",
"firebase": "9.4.1",
"kotlin": "1.5.31",
"kotlinx-coroutines-core": "1.5.2"
"kotlinx-coroutines-core": "1.5.2-native-mt"
}
}
2 changes: 1 addition & 1 deletion firebase-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@gitlive/firebase-app": "1.4.3",
"firebase": "9.4.1",
"kotlin": "1.5.31",
"kotlinx-coroutines-core": "1.5.2"
"kotlinx-coroutines-core": "1.5.2-native-mt"
}
}
2 changes: 1 addition & 1 deletion firebase-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"dependencies": {
"firebase": "9.4.1",
"kotlin": "1.5.31",
"kotlinx-coroutines-core": "1.5.2",
"kotlinx-coroutines-core": "1.5.2-native-mt",
"kotlinx-serialization-kotlinx-serialization-runtime": "1.3.0"
}
}
2 changes: 1 addition & 1 deletion firebase-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@gitlive/firebase-app": "1.4.3",
"firebase": "9.4.1",
"kotlin": "1.5.31",
"kotlinx-coroutines-core": "1.5.2"
"kotlinx-coroutines-core": "1.5.2-native-mt"
}
}
2 changes: 1 addition & 1 deletion firebase-database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@gitlive/firebase-app": "1.4.3",
"firebase": "9.4.1",
"kotlin": "1.5.31",
"kotlinx-coroutines-core": "1.5.2"
"kotlinx-coroutines-core": "1.5.2-native-mt"
}
}
2 changes: 1 addition & 1 deletion firebase-firestore/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@gitlive/firebase-app": "1.4.3",
"firebase": "9.4.1",
"kotlin": "1.5.31",
"kotlinx-coroutines-core": "1.5.2"
"kotlinx-coroutines-core": "1.5.2-native-mt"
}
}
2 changes: 1 addition & 1 deletion firebase-functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@gitlive/firebase-app": "1.4.3",
"firebase": "9.4.1",
"kotlin": "1.5.31",
"kotlinx-coroutines-core": "1.5.2"
"kotlinx-coroutines-core": "1.5.2-native-mt"
}
}

0 comments on commit 5c85236

Please sign in to comment.