如何解决这个问题?找不到“FirebaseMessaging.h”文件

问题描述 投票:0回答:3

如何解决这个问题? 找不到“FirebaseMessaging.h”文件

哪里有问题?

我曾尝试使用 pod install,但仍然存在问题。

enter image description here

enter image description here

flutter firebase firebase-cloud-messaging
3个回答
0
投票

我遇到了同样的问题,我已经通过清除 CocoaPods 缓存并重新下载来解决它。

步骤:

rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"

然后进入flutter项目目录,

cd ios
pod update

然后尝试构建/运行项目。


0
投票

我通过在终端中运行命令解决了这个问题:

pod install

-5
投票

您可以使用它来导入头文件

#import“FirebaseMessaging.h”

© www.soinside.com 2019 - 2024. All rights reserved.