@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
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
//...
Add the following line to your Podfile:
pod 'FirebaseUI/Storage'
Then add the following import to the problematic file:
import FirebaseStorageUI
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With