jasperthedog
jasperthedog

Reputation: 129

Xcode Error: 'FirebaseCore/FirebaseCore.h' file not found

After running pod update on my project, I am now getting the errors:

'FirebaseCore/FirebaseCore.h' file not found

and (I imagine associated):

Could not build Objective-C module 'Firebase'

I have tried deintegrating and installing pods multiple times, creating new workspaces (and making sure I am in workspace rather than project). I am not all that experienced in programming (yet!), but my podfile contains use_frameworks! in case that's of any help?

I have also noticed that when I build my app I get a warning about not being able to find the pod.[AppName].xcconfig file, although the file isn't highlighted in red and appears to still be where it says?

Upvotes: 3

Views: 7636

Answers (2)

Tajinder singh
Tajinder singh

Reputation: 886

enter image description hereHi, i was facing this issue . But i have this fixed error now. Go to Pod file and add "pod 'Firebase/Core', :modular_header => true and "pod 'Firebase/Messaging', :modular_header => true

enter image description here

Upvotes: 0

Muhammad Qasim Malik
Muhammad Qasim Malik

Reputation: 11

i have the same issue, i simply reinstall the pod file through command prompt like pod install so then my project start working.

Upvotes: 1

Related Questions