Can anyone confirm this is an appropriate Podfile for macOS connection to Firestore?
We need Auth, Realtime Database, Firestore and storage. macOS 10.14
project 'FirestoreTest.xcodeproj'
platform :osx, '10.14'
target 'FirestoreTest' do
use_frameworks!
pod 'Firebase'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'Firebase/Firestore'
pod 'Firebase/Storage'
pod 'FirebaseFirestoreSwift'
end
Our existing project was working fine yesterday and we decided to update our pods and project to Swift 5 and now we're having odd delays and issues reading and writing to Firestore.
When writing it sometimes take 10 seconds for a single string to be written and reading is timing out and reading locally cached data (not always).