我在 Android Studio 中创建了一个 Flutter 项目。它在 Android 设备上运行良好,但是当我尝试在 Xcode 上运行它时,出现以下错误:
构建系统信息错误:/Users/Downloads/flutter_wallpaper-master 2/ios/Flutter/Debug.xcconfig:1:在搜索路径中找不到包含的文件“Generated.xcconfig”(在目标“Runner”中)
谁能帮我解决这个问题?
我在 Android Studio 中创建了一个 Flutter 项目。它在 Android 设备上运行良好,但是当我尝试在 Xcode 上运行它时,出现以下错误:
构建系统信息错误:/Users/Downloads/flutter_wallpaper-master 2/ios/Flutter/Debug.xcconfig:1:在搜索路径中找不到包含的文件“Generated.xcconfig”(在目标“Runner”中)
谁能帮我解决这个问题?
尝试运行flutter build ios
,然后在 Xcode 中重新运行
我假设您的 Flutter 项目中已经有ios/
文件夹。如果没有,您可以运行flutter build ios
.
大多数情况下,此错误的根本原因发生在您从 Github 克隆项目之后。
为了修复,您需要获取软件包并安装 pod。
flutter clean && flutter pub get && cd ios/ && pod install
(在某些情况下,您可能需要更新您的 Pod Repo 和 Pod。您可以通过运行来做到这一点pod repo update && pod update
)
错误现在应该已经消失了:)
Why does this error occur?
This error occurred when creating multiple builds types for App. Development and production build on 2 different firebase server. After we have done with all the setup and tried to run the build it, this error pops up on Xcode.
The solution to this depends on what steps you took before this error arrives
If you are getting this error without running flutter build ios then first try to this
Run flutter build ios
to create a release build
To ensure that Xcode refreshes the release mode configuration, close and re-open your Xcode workspace. For Xcode 8.3 and later
If you use flutter build ios
when you receive the error? then try to this
Solution
On Terminal type:
flutter clean
flutter build
And on Xcode:
Product >> Clean Build Folder
Product >> Build
1.)flutter clean 2.)flutter pub get 3.)cd iOS 4.)pub update 5.)flutter run
=> 应该可以解决问题。
如果不是 -> 删除 podfile 并重复该过程。
经过几个小时的搜索,这解决了我的问题。
首先,运行 flutter doctor 检查是否所有的依赖项都检查了。如果这些 [] 框未填写为 [勾选],请按照终端上显示的说明进行操作。
flutter channel master
flutter doctor
然后,运行这一行。
flutter pub get
最后,使用以下代码重建您的 ios 路径(假设您的 ios 代码存储在项目的 /ios 文件夹中)。此步骤已包含 pod 安装过程。无需进一步pod install
执行。
flutter build ios --release --no-codesign