Reputation: 335
I've installed Firebase and am trying to install FirebaseUI, but when I try to 'import FirebaseUI', I get error: 'No such module FirebaseUI'
I've tried all three installation methods: CocoaPods, copying FirebaseUI.xcodeproj into my project and downloading from the release page.
I must be missing a step.
Thanks.
Upvotes: 0
Views: 349
Reputation: 1647
Make sure you are opening the .workspace file that is created when you install the pod's rather than the normal .xcode file.
Upvotes: 0
Reputation: 1413
The issue here is that you should open he Podfile and uncomment the #use_frameworks
Just remove the hash in front of it . Then type pod update and that should fix it.
Upvotes: 3