Support Multiple FirebaseApp - #8
Open
justbcuz wants to merge 7 commits into
Open
Conversation
Added support to initialize with a specific FirebaseApp instance.
Adding support for signing in anonymously.
Comment on lines
+20
to
+22
| init(firebaseAuth: Auth) { | ||
| self.auth = firebaseAuth | ||
| } |
Owner
There was a problem hiding this comment.
I haven't done this in a project myself. How do you get an instance of Auth other than calling Auth.auth() ? Do you have a sample implementation on how you'd initialize this?
Contributor
Author
There was a problem hiding this comment.
You can start off with configuring a FirebaseApp with custom options.
FirebaseApp.configure(name: appName, options: options)
Then you can access the FirebaseApp by name
let firebaseApp = FirebaseApp.app(name: appName)
Then you can instanciate an Auth instance with FirebaseApp
let firebaseAuth = Auth.auth(app: firebaseApp)
Same thing can be done with Firestore and Storage
let firebaseFirestore = Firestore.firestore(app: firebaseApp)
firebaseStorage = Storage.storage(app: firebaseApp)
# Conflicts: # Sources/SwiftfulFirebaseAuth/Providers/FirebaseAuthProvider.swift
# Conflicts: # Sources/SwiftfulFirebaseAuth/Core/AuthManager.swift # Sources/SwiftfulFirebaseAuth/Providers/FirebaseAuthProvider.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added support to configure and initialize AuthProvider with a specific FirebaseApp instance.