Skip to content

Commit d8120ad

Browse files
authored
Remove explicit MobileCoreServices from podspecs (#6858)
1 parent 89af9c2 commit d8120ad

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

FirebaseFirestore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
7272
s.dependency 'leveldb-library', '~> 1.22'
7373
s.dependency 'nanopb', '~> 2.30906.0'
7474

75-
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'UIKit'
75+
s.ios.frameworks = 'SystemConfiguration', 'UIKit'
7676
s.osx.frameworks = 'SystemConfiguration'
7777
s.tvos.frameworks = 'SystemConfiguration', 'UIKit'
7878

FirebaseStorage.podspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ Firebase Storage provides robust, secure file uploads and downloads from Firebas
3131
]
3232
s.public_header_files = 'FirebaseStorage/Sources/Public/FirebaseStorage/*.h'
3333

34-
s.ios.framework = 'MobileCoreServices'
3534
s.osx.framework = 'CoreServices'
3635

3736
s.dependency 'FirebaseCore', '~> 7.0'

FirebaseStorage/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 7.1.0
2+
- [Fixed] Remove explicit MobileCoreServices library linkage from podspec. (#6850)
3+
14
# 7.0.0
25
- [changed] The global variable `FIRStorageVersionString` is deleted.
36
`FirebaseVersion()` or `FIRFirebaseVersion()` should be used instead.

Firestore/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Unreleased
2+
- [Fixed] Remove explicit MobileCoreServices library linkage from podspec. (#6850)
23

34
# v7.0.0
45
- [changed] **Breaking change:** Removed the `areTimestampsInSnapshotsEnabled`

Package.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,6 @@ let package = Package(
445445
],
446446
linkerSettings: [
447447
.linkedFramework("SystemConfiguration", .when(platforms: .some([.iOS, .macOS, .tvOS]))),
448-
.linkedFramework("MobileCoreServices", .when(platforms: .some([.iOS]))),
449448
.linkedFramework("UIKit", .when(platforms: .some([.iOS, .tvOS]))),
450449
.linkedLibrary("c++"),
451450
]

0 commit comments

Comments
 (0)