Skip to content

Commit d2506f9

Browse files
committed
Fix plugin.serialization version
1 parent f066f8b commit d2506f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ The Firebase Kotlin SDK uses Kotlin serialization to read and write custom class
6363
```groovy
6464
plugins {
6565
kotlin("multiplatform") // or kotlin("jvm") or any other kotlin plugin
66-
kotlin("plugin.serialization") version "1.4.10"
66+
kotlin("plugin.serialization") version "1.5.10"
6767
}
6868
```
6969

firebase-common/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version = project.property("firebase-common.version") as String
99
plugins {
1010
id("com.android.library")
1111
kotlin("multiplatform")
12-
kotlin("plugin.serialization") version "1.5.0"
12+
kotlin("plugin.serialization") version "1.5.10"
1313
}
1414

1515
android {

firebase-firestore/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version = project.property("firebase-firestore.version") as String
99
plugins {
1010
id("com.android.library")
1111
kotlin("multiplatform")
12-
kotlin("plugin.serialization") version "1.5.0"
12+
kotlin("plugin.serialization") version "1.5.10"
1313
}
1414

1515
android {

0 commit comments

Comments
 (0)