Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

201
Views
Email login option gone after FirebaseAuth upgrade iOS

I suddenly no longer get the email option on the login page. It was always there and then since upgrading it is now gone!

Here is how I declare the providers:

   let providers: [FUIAuthProvider] = [
        FUIGoogleAuth(),
        FUIFacebookAuth(),
        FUITwitterAuth(),
        FUIPhoneAuth(authUI:FUIAuth.defaultAuthUI()!)
    ]

I don't see any new EmailAuth. Evidently it was always defaulted in and now it is gone and I can't find any notice of a change.

EDIT:

Tried adding:

   let providers: [FUIAuthProvider] = [
        FUIEmailAuthProvider(), <======  compile error
        FUIGoogleAuth(),
        FUIFacebookAuth(),
        FUITwitterAuth(),
        FUIPhoneAuth(authUI:FUIAuth.defaultAuthUI()!)
    ]

but got this error:

'FUIEmailAuthProvider' cannot be constructed because it has no accessible initializers

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

First needed:

pod 'FirebaseUI/Email'

Then added: FUIEmailAuth(),

over 4 years ago · Santiago Trujillo Report

0

What if you replace FUIEmailAuthProvider() withFUIEmailAuth() instead;

let providers: [FUIAuthProvider] = [
  FUIEmailAuth(),
  FUIGoogleAuth(),
  FUIFacebookAuth(),
  FUITwitterAuth(),
  FUIPhoneAuth(authUI: FUIAuth.defaultAuthUI()),
]

And add the following to the Podfile:

pod 'FirebaseUI/Auth'

pod 'FirebaseUI/Email'
pod 'FirebaseUI/Google'
pod 'FirebaseUI/Facebook'
pod 'FirebaseUI/Twitter'
pod 'FirebaseUI/Phone'

According to: Using FirebaseUI for Authentication

over 4 years ago · Santiago Trujillo Report

0

Actually its not properly described in the Firebase Documentation for iOS.

You have to add the pod pod 'FirebaseUI/Email' and after that:

  1. import FirebaseUI
  2. include FUIEmailAuth() as a provider

that will trigger Email sign in.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!