Skip to content

Commit 4b4fb79

Browse files
committed
updated Firebase SDKs & dependencies
1 parent 124d490 commit 4b4fb79

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
@@ -70,6 +70,7 @@ kotlin {
7070
"FirebaseCoreDiagnostics",
7171
"FirebaseInstallations",
7272
"GoogleAppMeasurement",
73+
"GoogleAppMeasurementIdentitySupport",
7374
"GoogleDataTransport",
7475
"GoogleUtilities",
7576
"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.3",
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
@@ -93,6 +93,7 @@ kotlin {
9393
"FirebaseCoreDiagnostics",
9494
"FirebaseInstallations",
9595
"GoogleAppMeasurement",
96+
"GoogleAppMeasurementIdentitySupport",
9697
"GoogleDataTransport",
9798
"GoogleUtilities",
9899
"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.3",
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 {
@@ -86,7 +86,7 @@ kotlin {
8686

8787
val commonMain by getting {
8888
dependencies {
89-
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.3.0-RC")
89+
api("org.jetbrains.kotlinx:kotlinx-serialization-core:1.3.0")
9090
}
9191
}
9292

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
@@ -77,6 +77,7 @@ kotlin {
7777
"FirebaseCoreDiagnostics",
7878
"FirebaseAnalytics",
7979
"GoogleAppMeasurement",
80+
"GoogleAppMeasurementIdentitySupport",
8081
"FirebaseInstallations",
8182
"GoogleDataTransport",
8283
"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.3",
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
@@ -68,6 +68,7 @@ kotlin {
6868
"FirebaseCoreDiagnostics",
6969
"FirebaseInstallations",
7070
"GoogleAppMeasurement",
71+
"GoogleAppMeasurementIdentitySupport",
7172
"GoogleDataTransport",
7273
"GoogleUtilities",
7374
"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.3",
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 {
@@ -71,6 +71,7 @@ kotlin {
7171
"FirebaseCoreDiagnostics",
7272
"FirebaseInstallations",
7373
"GoogleAppMeasurement",
74+
"GoogleAppMeasurementIdentitySupport",
7475
"GoogleDataTransport",
7576
"GoogleUtilities",
7677
"nanopb",
@@ -83,8 +84,8 @@ kotlin {
8384
"abseil",
8485
"BoringSSL-GRPC",
8586
"FirebaseFirestore",
86-
"gRPC-Core",
8787
"gRPC-C++",
88+
"gRPC-Core",
8889
"leveldb-library"
8990
).map {
9091
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.3",
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
@@ -63,6 +63,7 @@ kotlin {
6363
"FirebaseCoreDiagnostics",
6464
"FirebaseInstallations",
6565
"GoogleAppMeasurement",
66+
"GoogleAppMeasurementIdentitySupport",
6667
"GoogleDataTransport",
6768
"GoogleUtilities",
6869
"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.3",
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)