76

I have created a Flutter project in Android Studio. It runs fine on Android devices but when I try to run it on Xcode, I get an error as:

Build system information error: /Users/Downloads/flutter_wallpaper-master 2/ios/Flutter/Debug.xcconfig:1: could not find included file 'Generated.xcconfig' in search paths (in target 'Runner')

Can anyone help me with how to solve this issue?

Paresh Mangukiya
  • 37,512
  • 17
  • 201
  • 182
Swift Guy
  • 965
  • 1
  • 6
  • 18

6 Answers6

99

Try running flutter build ios and then rerun in Xcode

Austin Chen
  • 1,115
  • 4
  • 3
  • 8
    it doesn't work for me, after execution the cmd, I still get the error – Derrick.X Dec 21 '19 at 02:03
  • 1
    after issuing this command, I had to then run some kind of recommended update in xcode to update target ios versions and then it started working. – Jesse Smith Feb 05 '21 at 07:39
43

I assume you have already ios/ folder in your Flutter project. If not, you can run flutter build ios.

The root cause of this error most of the times happens after you have cloned a project like from Github.

In order to fix, you need to get the packages and install the pods.

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

(In some situation you might need to update your Pod Repo and Pods. You can do that via running pod repo update && pod update)

29

Please follow these steps/run commands

  1. flutter clean (in terminal)
  2. flutter build (in terminal)
  3. In Xcode, then clean project
  4. In Xcode, then build project

The error should have gone now :)

Community
  • 1
  • 1
Javed Iqbal
  • 393
  • 1
  • 5
  • 10
2

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
    
Paresh Mangukiya
  • 37,512
  • 17
  • 201
  • 182
1

After few hours of search, this solved my issue.

Firstly, run flutter doctor to check if all the dependencies checked. Follow the instructions shown on the terminal if those [] boxes are not completed as [ticked].

flutter channel master
flutter doctor

Then, run this line.

flutter pub get

Lastly, use the following code to rebuild your ios path (assume your ios codes are stored in /ios folder of your project). This step already included the pod install procedure. No need for further pod install execution.

flutter build ios --release --no-codesign
21.kaw
  • 523
  • 2
  • 6
  • 16
0

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

=> should solve the problem.

If not -> delete the podfile and repeat the process.

Can Kaplan
  • 106
  • 7