71

我在 Android Studio 中创建了一个 Flutter 项目。它在 Android 设备上运行良好,但是当我尝试在 Xcode 上运行它时,出现以下错误:

构建系统信息错误:/Users/Downloads/flutter_wallpaper-master 2/ios/Flutter/Debug.xcconfig:1:在搜索路径中找不到包含的文件“Generated.xcconfig”(在目标“Runner”中)

谁能帮我解决这个问题?

4

6 回答 6

92

尝试运行flutter build ios,然后在 Xcode 中重新运行

于 2019-03-16T20:09:04.440 回答
41

我假设您的 Flutter 项目中已经有ios/文件夹。如果没有,您可以运行flutter build ios.

大多数情况下,此错误的根本原因发生在您从 Github 克隆项目之后。

为了修复,您需要获取软件包并安装 pod。

flutter clean && flutter pub get && cd ios/ && pod install 

(在某些情况下,您可能需要更新您的 Pod Repo 和 Pod。您可以通过运行来做到这一点pod repo update && pod update

于 2020-06-08T10:57:57.783 回答
29

请按照这些步骤/运行命令

  1. 颤振干净(在终端中)
  2. 颤振构建(在终端中)
  3. 在 Xcode 中,然后清理项目
  4. 在 Xcode 中,然后构建项目

错误现在应该已经消失了:)

于 2020-03-12T10:07:08.393 回答
1

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

  1. If you are getting this error without running flutter build ios then first try to this

    1. Run  flutter build ios to create a release build

    2. To ensure that Xcode refreshes the release mode configuration, close and re-open your Xcode workspace. For Xcode 8.3 and later

 

  1. 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
    
于 2020-10-30T03:47:14.653 回答
0

1.)flutter clean 2.)flutter pub get 3.)cd iOS 4.)pub update 5.)flutter run

=> 应该可以解决问题。

如果不是 -> 删除 podfile 并重复该过程。

于 2021-01-26T10:04:43.573 回答
0

经过几个小时的搜索,这解决了我的问题。

首先,运行 flutter doctor 检查是否所有的依赖项都检查了。如果这些 [] 框未填写为 [勾选],请按照终端上显示的说明进行操作。

flutter channel master
flutter doctor

然后,运行这一行。

flutter pub get

最后,使用以下代码重建您的 ios 路径(假设您的 ios 代码存储在项目的 /ios 文件夹中)。此步骤已包含 pod 安装过程。无需进一步pod install执行。

flutter build ios --release --no-codesign
于 2020-12-25T07:42:53.017 回答