Skip to content

Commit f711a23

Browse files
committed
updated Firebase SDKs & dependencies
1 parent 6ac7a83 commit f711a23

File tree

23 files changed

+28
-22
lines changed

23 files changed

+28
-22
lines changed

build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
33
import org.gradle.api.tasks.testing.logging.TestLogEvent
44

55
plugins {
6-
kotlin("multiplatform") version "1.5.30" apply false
6+
kotlin("multiplatform") version "1.5.31" apply false
77
id("base")
88
}
99

@@ -197,7 +197,7 @@ subprojects {
197197
dependencies {
198198
"commonMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
199199
"androidMainImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2")
200-
"androidMainImplementation"(platform("com.google.firebase:firebase-bom:28.4.0"))
200+
"androidMainImplementation"(platform("com.google.firebase:firebase-bom:28.4.1"))
201201
"commonTestImplementation"(kotlin("test-common"))
202202
"commonTestImplementation"(kotlin("test-annotations-common"))
203203
"commonTestImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")

firebase-app/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ kotlin {
6767
"FirebaseCoreDiagnostics",
6868
"FirebaseInstallations",
6969
"GoogleAppMeasurement",
70+
"GoogleAppMeasurementIdentitySupport",
7071
"GoogleDataTransport",
7172
"GoogleUtilities",
7273
"nanopb",

firebase-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@gitlive/firebase-common": "1.4.2",
2727
"firebase": "8.10.0",
28-
"kotlin": "1.5.30",
28+
"kotlin": "1.5.31",
2929
"kotlinx-coroutines-core": "1.5.2"
3030
}
3131
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json" == 8.6.0
1+
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAnalyticsBinary.json" == 8.8.0

firebase-app/src/nativeInterop/cinterop/FirebaseCore.def

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ language = Objective-C
22
package = cocoapods.FirebaseCore
33
modules = FirebaseCore
44
compilerOpts = -framework FirebaseCore
5-
linkerOpts = -framework FirebaseCore -framework FirebaseCoreDiagnostics -framework FirebaseAnalytics -framework GoogleAppMeasurement -framework FirebaseInstallations -framework GoogleDataTransport -framework GoogleUtilities -framework PromisesObjC -framework nanopb -framework StoreKit -lsqlite3
5+
linkerOpts = -framework FirebaseAnalytics -framework FirebaseCore -framework FirebaseCoreDiagnostics -framework FirebaseInstallations -framework GoogleAppMeasurement -framework GoogleAppMeasurementIdentitySupport -framework GoogleDataTransport -framework GoogleUtilities -framework nanopb -framework PromisesObjC -framework StoreKit -lsqlite3

firebase-auth/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ kotlin {
9090
"FirebaseCoreDiagnostics",
9191
"FirebaseInstallations",
9292
"GoogleAppMeasurement",
93+
"GoogleAppMeasurementIdentitySupport",
9394
"GoogleDataTransport",
9495
"GoogleUtilities",
9596
"nanopb",

firebase-auth/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
28-
"kotlin": "1.5.30",
28+
"kotlin": "1.5.31",
2929
"kotlinx-coroutines-core": "1.5.2"
3030
}
3131
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAuthBinary.json" == 8.6.0
1+
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseAuthBinary.json" == 8.8.0

firebase-common/build.gradle.kts

+2-2
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.30"
12+
kotlin("plugin.serialization") version "1.5.31"
1313
}
1414

1515
android {
@@ -82,7 +82,7 @@ kotlin {
8282

8383
val commonMain by getting {
8484
dependencies {
85-
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.3.0-RC")
85+
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.3.0")
8686
}
8787
}
8888

firebase-common/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"homepage": "https://github.com/GitLiveApp/firebase-kotlin-multiplatform-sdk",
2525
"dependencies": {
2626
"firebase": "8.10.0",
27-
"kotlin": "1.5.30",
27+
"kotlin": "1.5.31",
2828
"kotlinx-coroutines-core": "1.5.2",
29-
"kotlinx-serialization-kotlinx-serialization-runtime": "1.2.2"
29+
"kotlinx-serialization-kotlinx-serialization-runtime": "1.3.0"
3030
}
3131
}

firebase-config/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ kotlin {
7575
"FirebaseCoreDiagnostics",
7676
"FirebaseAnalytics",
7777
"GoogleAppMeasurement",
78+
"GoogleAppMeasurementIdentitySupport",
7879
"FirebaseInstallations",
7980
"GoogleDataTransport",
8081
"GoogleUtilities",

firebase-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
28-
"kotlin": "1.5.30",
28+
"kotlin": "1.5.31",
2929
"kotlinx-coroutines-core": "1.5.2"
3030
}
3131
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseRemoteConfigBinary.json" == 8.6.0
1+
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseRemoteConfigBinary.json" == 8.8.0

firebase-config/src/nativeInterop/cinterop/FirebaseRemoteConfig.def

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ language = Objective-C
22
package = cocoapods.FirebaseRemoteConfig
33
modules = FirebaseRemoteConfig
44
compilerOpts = -framework FirebaseRemoteConfig
5-
linkerOpts = -framework FirebaseRemoteConfig -framework FirebaseABTesting
5+
linkerOpts = -framework FirebaseABTesting -framework FirebaseRemoteConfig

firebase-database/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ kotlin {
6666
"FirebaseCoreDiagnostics",
6767
"FirebaseInstallations",
6868
"GoogleAppMeasurement",
69+
"GoogleAppMeasurementIdentitySupport",
6970
"GoogleDataTransport",
7071
"GoogleUtilities",
7172
"nanopb",

firebase-database/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
28-
"kotlin": "1.5.30",
28+
"kotlin": "1.5.31",
2929
"kotlinx-coroutines-core": "1.5.2"
3030
}
3131
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseDatabaseBinary.json" == 8.6.0
1+
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseDatabaseBinary.json" == 8.8.0

firebase-firestore/build.gradle.kts

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version = project.property("firebase-firestore.version") as String
1010
plugins {
1111
id("com.android.library")
1212
kotlin("multiplatform")
13-
kotlin("plugin.serialization") version "1.5.30"
13+
kotlin("plugin.serialization") version "1.5.31"
1414
}
1515

1616
android {
@@ -69,6 +69,7 @@ kotlin {
6969
"FirebaseCoreDiagnostics",
7070
"FirebaseInstallations",
7171
"GoogleAppMeasurement",
72+
"GoogleAppMeasurementIdentitySupport",
7273
"GoogleDataTransport",
7374
"GoogleUtilities",
7475
"nanopb",
@@ -81,8 +82,8 @@ kotlin {
8182
"abseil",
8283
"BoringSSL-GRPC",
8384
"FirebaseFirestore",
84-
"gRPC-Core",
8585
"gRPC-C++",
86+
"gRPC-Core",
8687
"leveldb-library"
8788
).map {
8889
projectDir.resolve("src/nativeInterop/cinterop/Carthage/Build/$it.xcframework/${konanTarget.archVariant}")

firebase-firestore/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
28-
"kotlin": "1.5.30",
28+
"kotlin": "1.5.31",
2929
"kotlinx-coroutines-core": "1.5.2"
3030
}
3131
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFirestoreBinary.json" == 8.6.0
1+
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFirestoreBinary.json" == 8.8.0

firebase-functions/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ kotlin {
6161
"FirebaseCoreDiagnostics",
6262
"FirebaseInstallations",
6363
"GoogleAppMeasurement",
64+
"GoogleAppMeasurementIdentitySupport",
6465
"GoogleDataTransport",
6566
"GoogleUtilities",
6667
"nanopb",

firebase-functions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"@gitlive/firebase-app": "1.4.2",
2727
"firebase": "8.10.0",
28-
"kotlin": "1.5.30",
28+
"kotlin": "1.5.31",
2929
"kotlinx-coroutines-core": "1.5.2"
3030
}
3131
}
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFunctionsBinary.json" == 8.6.0
1+
binary "https://dl.google.com/dl/firebase/ios/carthage/FirebaseFunctionsBinary.json" == 8.8.0

0 commit comments

Comments
 (0)