firebase 在xcode中未找到模块'footers.exe'

m4pnthwp  于 2023-05-01  发布在  其他
关注(0)|答案(1)|浏览(131)

当我想运行应用程序Flutter从xcode它的打印错误

Module 'FirebaseSessions' not found

此问题发生在更新到上次crashltyics firebase ou之后

mwecs4sa

mwecs4sa1#

添加Flutter会话pod

打开pod文件然后添加

target 'Runner' do
  use_frameworks!
  use_modular_headers!

 
   pod 'FirebaseSessions'
 
end

Flutter清理

在Android IDE上打开termmial,然后写:

flutter clean
flutter pub get 
flutter pub upgrade

xcode pod文件

打开你的Mac终端,然后使光盘到你的项目路径ios文件夹,然后写这个命令

pod install
pod update

相关问题