在 xcode 中找不到模块“FirebaseSessions”

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

虽然我想从 xcode 运行 app flutter 它是打印错误

Module 'FirebaseSessions' not found

这个问题发生在更新到最后一个 crashltyics firebase 之后 欧

flutter xcode firebase crashlytics
1个回答
0
投票

添加 Flutter 会话 pod

打开 pod 文件然后添加


target 'Runner' do
  use_frameworks!
  use_modular_headers!

 
   pod 'FirebaseSessions'
 
end

颤动清洁

在Android IDE打开termnial然后写:

flutter clean
flutter pub get 
flutter pub upgrade

xcode pod 文件

打开你的 Mac termnial,然后制作 cd 到你的项目路径 ios 文件夹 然后写这个命令

pod install
pod update
© www.soinside.com 2019 - 2024. All rights reserved.