Reputation: 129
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
Reputation: 886
Hi, 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
Upvotes: 0
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