I have an iOS App that uses the Firebase Realtime Database that I would like to create for Mac OS X. Does Firebase still support Mac OS X in the latest update as the Firebas
Thanks to the open source community, it's possible again to build a Firebase Realtime Database client on macOS. Details in the GitHub repo README.
As Paul said, you have to follow the instructions to get the pods right from the GitHub repository.
I added these lines to my Podfile
pod 'FirebaseCore', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
pod 'FirebaseStorage', :git => 'https://github.com/firebase/firebase-ios-sdk.git', :branch => 'master'
Then on the AppDelegate
import FirebaseCore
func applicationDidFinishLaunching(_ aNotification: Notification) {
FirebaseApp.configure()
}
Hope this helps!