Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Firebase still support Mac OS X - July 2016

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 Firebase console only shows the option to Add Firebase to an iOS, Android or web app.

If so, where can I find it?

Thank you

like image 419
Tom Coomer Avatar asked Jul 08 '16 23:07

Tom Coomer


2 Answers

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.

like image 192
Paul Beusterien Avatar answered Sep 23 '22 07:09

Paul Beusterien


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!

like image 20
Dx_ Avatar answered Sep 19 '22 07:09

Dx_