Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: Could not find included file 'Generated.xcconfig' in search paths (in target 'Runner')

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?

like image 818
Swift Guy Avatar asked Jan 23 '19 06:01

Swift Guy


People also ask

Can't find include file production Xcconfig in search paths?

Solution 1 Just Run flutter build ios in your root Directory. Then Open XCode. ReRun Project In XCode. This will resolve your error.

Could not find include file pods target support files debug Xcconfig in search paths?

to Solve error: could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner. debug. xcconfig' in search paths (in target 'Runner') you just have to install pods manually. the second solution is Just to delete Podfile and re-run your app.


1 Answers

Try running flutter build ios and then rerun in Xcode

like image 63
Austin Chen Avatar answered Oct 01 '22 19:10

Austin Chen