Эх сурвалжийг харах

Explicitly state Firestore's dependency on UIKit (#5077)

* Explicitly state Firestore's dependency on UIKit (#5067)

In #4985 we added support for listening to
`UIApplicationWillEnterForegroundNotification` notifications to better
handle situations where we may have missed callbacks from
`SCNetworkReachabilitySetCallback` while Firestore was in the background.

Fixes #5065.

* Update CHANGELOG for Firestore v1.11.2
Gil 6 жил өмнө
parent
commit
54a1db1dc7

+ 3 - 3
FirebaseFirestore.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name             = 'FirebaseFirestore'
-  s.version          = '1.11.1'
+  s.version          = '1.11.2'
   s.summary          = 'Google Cloud Firestore for iOS'
 
   s.description      = <<-DESC
@@ -74,9 +74,9 @@ Google Cloud Firestore is a NoSQL document database built for automatic scaling,
   s.dependency 'leveldb-library', '~> 1.22'
   s.dependency 'nanopb', '~> 0.3.901'
 
-  s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration'
+  s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'UIKit'
   s.osx.frameworks = 'SystemConfiguration'
-  s.tvos.frameworks = 'SystemConfiguration'
+  s.tvos.frameworks = 'SystemConfiguration', 'UIKit'
 
   s.library = 'c++'
   s.pod_target_xcconfig = {

+ 4 - 0
Firestore/CHANGELOG.md

@@ -1,5 +1,9 @@
 # Unreleased
 
+# v1.11.2
+- [fixed] Fixed the FirebaseFirestore podspec to properly declare its
+  dependency on the UIKit framework on iOS and tvOS.
+
 # v1.11.1
 - [fixed] Firestore should now recover its connection to the server more
   quickly after returning from the background (#4905).