Michael Kaminowitz
Michael Kaminowitz

Reputation: 335

FirebaseUI install issue (iOS-Swift)

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

Answers (2)

dylankbuckley
dylankbuckley

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

ksa_coder
ksa_coder

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

Related Questions