Swift : Firebase Unresolved identifier FirebaseApp.configure() && FIRApp.configure()

Viewed 2886

i am using xcode 7.3 and swift 2.2. I have added pod 'Firebase/Auth' to my pod file then it gives me error stating unresolved identifier for both of them but when i reinstall my pod file with out pod 'Firebase/Auth'. It does not shows the issue for FirebaseApp.configure().Only after adding Auth to my pod file it is showing the issue. I tried even updating my pod file but still same issue. This is my pod

And this is how i installed pod,

This is my pd file

enter image description here

Can anybody suggest me how can i solve this issue.? Even restarting and cleaning also does not solves the issue..

2 Answers

You just need to add 'import FirebaseCore'

Related