Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Crashlytics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Unreleased
- [fixed] Add missing nanopb dependency to fix SwiftPM builds when building
dynamically linked libraries. (#15276)

# 12.1.0
- [fixed] Do not log using raw print in an internal class. (#15138)

Expand Down
4 changes: 4 additions & 0 deletions FirebasePerformance/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Unreleased
- [fixed] Add missing nanopb dependency to fix SwiftPM builds when building
dynamically linked libraries. (#15276)

# 11.6.0
- [fixed] Fix a crash related to registering for notifications when the app is between foreground or background states. (#13174)

Expand Down
4 changes: 4 additions & 0 deletions FirebaseRemoteConfig/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Unreleased
- [fixed] Add missing GoogleUtilities dependency to fix SwiftPM builds when
building dynamically linked libraries. (#15276)

# 12.2.0
- [fixed] Fixed a race condition that could lead to a crash during network
session recreation. (#15087)
Expand Down
8 changes: 8 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1003,6 +1003,7 @@ let package = Package(
"FirebaseABTesting",
"FirebaseInstallations",
"FirebaseRemoteConfigInterop",
.product(name: "GULEnvironment", package: "GoogleUtilities"),
.product(name: "GULNSData", package: "GoogleUtilities"),
],
path: "FirebaseRemoteConfig/Sources",
Expand Down Expand Up @@ -1100,6 +1101,13 @@ let package = Package(
"FirebaseInstallations",
"FirebaseCoreExtension",
"FirebaseSessionsObjC",
// The `FirebaseSessions` target transitively depends on nanopb via the internal
// `FirebaseSessionsObjC` target. Not explicitly depending on nanopb leads to
// undefined symbol errors in Tuist based SPM builds.
// See the conversations in
// - https://github.com/firebase/firebase-ios-sdk/issues/15276
// - https://github.com/firebase/firebase-ios-sdk/pull/15287
.product(name: "nanopb", package: "nanopb"),
.product(name: "Promises", package: "Promises"),
.product(name: "GoogleDataTransport", package: "GoogleDataTransport"),
.product(name: "GULEnvironment", package: "GoogleUtilities"),
Expand Down
Loading