You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following issue happens for the newest versions of iOS (13.1.0, Swift, Firebase newest version as of 2024/01/30) and Android (8.0.2, Kotlin, Firebase BOM 32.7.1 (newest version)).
If you click login with email and then enter an email that already exists as Firebase email/password account, the next view is the account creation view (where you have to enter a name and new password) and not the login screen (where you could enter your existing password). Then if you click "save" top right the message appears, that the email is already linked to an existing account.
This is a new problem since this worked some days ago. Important to add, that we tried this with several email/password accounts and none was linked to another authentication provider. We also created new accounts to check this issue and it also happens for them.
This is the code to open the Firebase Auth UI for Swift: let authUI = FUIAuth.defaultAuthUI() authUI.delegate = self let providers: [FUIAuthProvider] = [ FUIOAuth.appleAuthProvider(), FUIGoogleAuth(authUI: authUI), FUIEmailAuth()] authUI.providers = providers authUI.shouldAutoUpgradeAnonymousUsers = false present(authUI.authViewController(), animated: true)
Any help would be appreciated a lot.
The text was updated successfully, but these errors were encountered:
The following issue happens for the newest versions of iOS (13.1.0, Swift, Firebase newest version as of 2024/01/30) and Android (8.0.2, Kotlin, Firebase BOM 32.7.1 (newest version)).
If you click login with email and then enter an email that already exists as Firebase email/password account, the next view is the account creation view (where you have to enter a name and new password) and not the login screen (where you could enter your existing password). Then if you click "save" top right the message appears, that the email is already linked to an existing account.
This is a new problem since this worked some days ago. Important to add, that we tried this with several email/password accounts and none was linked to another authentication provider. We also created new accounts to check this issue and it also happens for them.
This is the code to open the Firebase Auth UI for Swift:
let authUI = FUIAuth.defaultAuthUI()
authUI.delegate = self
let providers: [FUIAuthProvider] = [ FUIOAuth.appleAuthProvider(), FUIGoogleAuth(authUI: authUI), FUIEmailAuth()]
authUI.providers = providers
authUI.shouldAutoUpgradeAnonymousUsers = false
present(authUI.authViewController(), animated: true)
Any help would be appreciated a lot.
The text was updated successfully, but these errors were encountered: