Skip to content

Commit

Permalink
Explicitly state Firestore's dependency on UIKit (#5067)
Browse files Browse the repository at this point in the history
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.
wilhuff authored Mar 11, 2020
1 parent 1243798 commit 027c670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FirebaseFirestore.podspec
Original file line number Diff line number Diff line change
@@ -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 = {

0 comments on commit 027c670

Please sign in to comment.