Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.17.4, on Mac OS X 10.15.5 19F101, locale en-US)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[✓] Xcode - develop for iOS and macOS (Xcode 11.5)
[✓] Android Studio (version 4.0)
[✓] VS Code (version 1.46.1)
[!] Connected device
! No devices available
! Doctor found issues in 1 category.
\\\错误消息
** BUILD FAILED **
Xcode's output:
↳
/Users/Razi/Desktop/projects/Sayy/ios/Runner/GeneratedPluginRegistrant.m:10:9: fatal error: module 'firebase_auth' not found
@import firebase_auth;
~~~~~~~^~~~~~~~~~~~~
1 error generated.
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description
我尝试删除Podfile / Podlock并运行pod init
/ pod install
失败。还查看了ios文件夹的GitHub存储库。为什么找不到firebase_auth?
答案 0 :(得分:1)
您似乎未提供Podfile的完整内容(在那里我看不到Sayy目标的任何内容),或者您一直在更改Podfile
根据您要归档的内容,删除Podfile中的最后3行,或者在“ use_modular_headers!”之后紧接将行“ pod'AFNetworking','〜> 3.0'”定位到目标“ Runner”!
在左侧边栏中打开XCode最上端项目(蓝色图标)->在最左侧菜单中,您将看到两个部分-Project和Targets。因此,位于“目标”块中的名称是唯一在关键字“目标”之后出现在Podfile中的名称
一切取决于:
答案 1 :(得分:1)
我尝试按照建议的步骤执行 Flutter clean
,手动删除 podfile
和 podfile.lock
以及 Pod
相关文件夹,再次执行 pod install
等。 - 没有任何帮助。
最终帮助我的是以下顺序:
pubspec.yaml
中声明的相同依赖项的新项目。pub get
。pod install
以生成所有内容podfile
和 podfile.lock
文件复制到旧项目。pod install
。只有在这个序列之后,我才能再次构建 iOS 项目。
答案 2 :(得分:0)
更新:通过执行以下操作,我最终找到了解决方法:
Flutter Clean
(在项目的ios文件夹中)Podlock
和Pod Folder
pod init
,然后运行pod install
似乎与Runner.xcworkspace文件夹和内部版本有关 运行构建所需的文件。
答案 3 :(得分:0)
These steps helped me to resolve the issue completely for IOS:
>> flutter clean
then "delete podfile, podfile.lock, pod folder"
>> flutter pub get
>> pod install
>> flutter run