How can solve this issues? 'FirebaseMessaging.h' file not found
where has problem?
I had tried to used pod install, but still issues.
How can solve this issues? 'FirebaseMessaging.h' file not found
where has problem?
I had tried to used pod install, but still issues.
I was facing the same issue, I have solved it by clearing CocoaPods cache and redownloading it.
Steps:
rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"
Then go to the flutter project directory then,
cd ios
pod update
Then try to build/run the project.
I solved this issue by just running command in terminal :
pod install
You can use this for importing the header file
#import "FirebaseMessaging.h"
© 2022 - 2025 — McMap. All rights reserved.
pod 'FirebaseCore'
– Snippy