Flutter (iOS) - 在 GeneratedPluginRegistrant.m 中找不到模块“cloud_firestore”
Posted
技术标签:
【中文标题】Flutter (iOS) - 在 GeneratedPluginRegistrant.m 中找不到模块“cloud_firestore”【英文标题】:Flutter (iOS) - Module 'cloud_firestore' not found in GeneratedPluginRegistrant.m 【发布时间】:2021-09-26 17:42:04 【问题描述】:我是 Flutter 环境中的新生儿。
我正在尝试设置与我的应用的 Cloud Firestore 连接。我在 VSCode 上完成了大部分编码过程,但是在实现了 firestore 之后,我尝试在 Xcode 中构建,因为我在 VSCode 上遇到了一些错误。
在 Xcode 12.5.1(我使用 Rosetta 打开)中构建我的应用程序时,我收到了这个错误 Error when building app - Module 'cloud_firestore' not found
我确保在 Podfile 或我的 Pubspec.yaml 文件中添加依赖项。
这是My podfile,这是我的 pubspec.yaml 依赖项pubspec.yaml dependencies
我已经尝试了几件事,例如:
解压pod并重新安装pod(包括删除podfile.lock和pods目录并重新安装pod)
我试过flutter clean
-> flutter pub get
-> flutter build ios
,但仍然导致同样的错误。
我已通过 Xcode 将我的 GoogleService-Info.plist 导入到我的 Runner 并仔细检查了名称。
让我感兴趣的是,我还添加了 Firebase_auth 包,它工作得很好。看到错误只显示在import Cloud Firestore line
有谁知道如何解决这个错误?任何帮助将不胜感激。太感谢了???
【问题讨论】:
对我来说也一样...... 经过几天的 github 和文档滚动后,我终于找到了解决方法 @SaurabhKumar 我只是将所有的 ios 版本更改为 12 并且它成功了。 【参考方案1】:你能看到cloud_firestore
模块已经成功导入到你的iOS项目下了吗?
【讨论】:
你好,M_JSL!感谢您抽出宝贵时间回复。错误消息如下:/Path_To_My_App_ios/Runner/GeneratedPluginRegistrant.m:10:9: fatal error: module 'cloud_firestore' not found @import cloud_firestore;
所以我假设云火库尚未导入我的项目。【参考方案2】:
经过几天的尝试和错误,我终于找到了解决方法..
所以,我注意到在为 iOS 构建时可能会导致错误的几件事。
从不手动运行命令pod install
。
不要将 pod install Firebase
行添加到您的 podfile 中。相反,只需使用 $FirebaseSDKVersion = '8.0.0'
覆盖所有 firebase 依赖项
不要忘记在您的 podfile 中指定您的 iOS 部署目标,并将其与 Runner.xcworkspace 文件中的部署目标匹配(在运行器和目标中)
所以,如果您已经有一个项目,以下是我推荐的步骤,因为这非常适合我:
删除 Pods 目录、/ios/podfile.lock 和 ios/Flutter/Flutter.podspec
运行pod deintegrate
删除 DerivedData 文件夹中的所有内容。你可以运行rm -rf ~/Library/Developer/Xcode/DerivedData/*
运行flutter clean
运行flutter pub get
运行flutter build ios
。请注意,这也会运行pod install
命令。
关闭编辑器,在 XCode 上打开 Runner.xcworkspace 并运行 XCode。清理你的构建文件夹。如果有更新项目设置的选项,请接受。
您可能会收到一些关于已弃用功能的警告,但在我的情况下,我的应用运行良好..
我不知道为什么会发生这种情况的细节,但据我观察,Cocoapods 有一些不同版本的 ios 火力基础包。我希望有人能解释一下。
--
注意事项:
如果在 XCode 上构建您的应用程序,然后在终端或 VSCode 上使用 flutter run
,您会收到一些警告,例如 Class AMSupportURLConnectionDelegate 在两者中都实现了。所以,根据我的个人经验,我总是从 XCode 运行我的应用程序。
如果您使用 Google 登录,请按照步骤 here 您无需在 podfile 中添加任何内容。
作为参考,这是我的 podfile 内容。
# Uncomment the next line to define a global platform for your project
# platform :ios, '12.0'
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
$FirebaseSDKVersion = '8.0.0'
project 'Runner',
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#generated_xcode_build_settings_path must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #generated_xcode_build_settings_path. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
end
我希望它对你有用!祝你好运!
【讨论】:
由于我运行的是多方案项目,所以我没有按照建议进行Step 6
。相反,我手动运行pod install
,然后转到Step 7
运行我的应用程序。完全适用于除 1 个方案外的所有方案,似乎配置不正确?它仍然出现相同的错误,我注意到它缺少.plist
文件中的一些设置。但是感谢@reneconrad 的帮助。
嘿,@RealSollyM 当我尝试实现 Google 登录时,我遇到了关于 .plist 文件的相同错误......所以我遵循了这个网站上的“设置身份验证”部分.. blog.codemagic.io/… 。希望它对你有用:)
在 pod 文件中添加这一行为我解决了这个问题 target.build_configurations.each do |config| config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0' config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" end【参考方案3】:
以前的解决方案都不适合我。经过两天的搜索,我将 cocoapods 降级为我知道过去可以使用的旧版本:
-COCOAPODS: 1.11.2
+COCOAPODS: 1.10.1
使用gem uninstall cocoapods
卸载并安装旧版本。
之后我应用了@reneconrad 的答案。
【讨论】:
以上是关于Flutter (iOS) - 在 GeneratedPluginRegistrant.m 中找不到模块“cloud_firestore”的主要内容,如果未能解决你的问题,请参考以下文章
Flutter 构建 iOS 错误:在 iOS 设备中构建 Flutter 应用程序时遇到错误
Flutter iOS混编 解决flutter在iOS14+ debug模式上无法运行的问题
Flutter混合开发:在已有iOS项目中引入Flutter
Flutter混合开发:在已有iOS项目中引入Flutter