未找到模块“firebase_analytics”

时间:2021-03-22 15:02:48

标签: ios flutter

我有问题,

我尝试在 Apple Store 上发布我的应用程序的新版本,但出现了这个问题:

未找到模块“firebase_analytics”

有人遇到过这种情况吗?

Module 'firebase_analytics' not found

1 个答案:

答案 0 :(得分:0)

首先,确保您将分析添加到您的 podfile 中。

target 'Runner' do
 pod 'Firebase/Analytics'
end

另外就是去ios目录下执行命令。

 pod clean
 pod install

最后,您可以在根目录中运行以下命令。

 flutter clean
 flutter pub get