Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"No Such module as firebaseUI"

Imported the screenshot @import FirebaseUI;

When I imported this module it shows "No Such Module as FirebaseUI"

but I have already installed pods

 pod 'Firebase/Core'

 pod 'FirebaseUI'

 pod 'FirebaseUI/Auth'

 pod 'FirebaseUI/Google'

 pod 'FirebaseUI/Facebook'

 pod 'FirebaseUI/Twitter'

 pod 'FirebaseUI/Phone'

I am new to ios can someone please help me

like image 329
Minato Avatar asked Dec 18 '25 10:12

Minato


2 Answers

Since FirebaseUI 11.0.0 it is no longer possible to import FirebaseUI framework using just:

import FirebaseUI

in Swift and

@import FirebaseUI

in Objective C.

According to the official changelog at github.com, now you have to import FirebaseUI modules separately.

Example below (Swift):

//FirebaseUI 11.0
import FirebaseAuthUI
import FirebaseDatabaseUI
//...
like image 163
Wojtuf Avatar answered Dec 20 '25 00:12

Wojtuf


Add the following line to your Podfile:

pod 'FirebaseUI/Storage' 

Then add the following import to the problematic file:

import FirebaseStorageUI

Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!