Firebase 7

How to sign in with apple for web with firebase

Issue #668

Authenticate Using Apple with JavaScript

Use Firebase JS SDK

Configure Sign in with Apple for the web

Go to Certificates, …

How to use firebase cloud functions

Issue #667

Use node 10

Edit package.json

"engines": {
    "node": "10"
},

Secret key

Go to settings/serviceaccounts/adminsdk, download secret key in form of json and place it in lib/config.json

const serviceAccount = require( …

How to use Firebase Crashlytics in macOS app

Issue #585

New Firebase Crashlytics

Follow the new Firebase Crashlytics guide Get started with Firebase Crashlytics using the Firebase Crashlytics SDK

CocoaPods

Specify FirebaseCore for community managed macOS version of Firebase

platform :osx, …

How to use Firebase in macOS

Issue #501

  • Use Catalyst
  • Add to CocoaPods
platform :ios, '13.0'

target 'MyApp' do
  use_frameworks!

  pod 'FirebaseCore'
  pod 'Firebase/Firestore'

end

Troubleshooting

Select a team for …

How to use Firebase RemoteConfig

Issue #493

Declare in Podfile

pod 'Firebase/Core'
pod 'Firebase/RemoteConfig'

Use RemoteConfigHandler to encapsulate logic. We introduce Key with CaseIterable and defaultValue of type NSNumber to manage default values.

import Firebase …

How to use Firebase AutoML Vision Edge to classify images

Issue #490

Create project on Firebase and choose Vision Edge

Vision Edge is part of MLKit, but for custom images training

https://console.firebase.google.com/u/0/project/avengers-ad2ce/ml/

firebase vision edge firebase dataset

Model Avengers_dataset_2019114133437 is training and may …