未找到导入的“模块‘app_settings’”

时间:2021-02-16 15:33:50

标签: ios swift xcode flutter

我目前正在尝试使用 xcode 来使用 xcode 测试我的 flutter 应用程序。最大的问题是我的所有导入(例如 app_settings、cloud_firestore 等...)都给出了“找不到模块 ___”的错误。当我尝试运行我的 dart 代码时,我在终端中收到错误消息:

[Proj Root]/ios/Runner/GeneratedPluginRegistrant.m:10:9: fatal error: module 'app_settings' not found
@import app_settings;
~~~~~~~~^~~~~~~~~~~~
1 error generated.
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description

我尝试为 ios 运行 flutter create,(这可能会让事情变得更糟?) Flutter clean 和重新安装 pods 似乎也不起作用。我想知道导入模块是否有一些简单的东西。我使用适用于 Android 和 iOS 的模块在 android 上创建了应用程序。在让 android 版本工作后,我通过 github 在我的 mac 上拉了我的项目,最终解决了这个问题。任何指针将不胜感激,因为我完全坚持这一点。

1 个答案:

答案 0 :(得分:2)

嗯不确定发生了什么,但现在似乎很好。我认为 pod init 正在为 podfile 初始化最少的数据。相反,我删除了 Pods 文件并执行了 flutter run,它使用 flutter pub get 正确构建了 podfile。