error: could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig' in search paths (in target 'Runner') error: could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig' in search paths (in target 'Runner') ios ios

error: could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig' in search paths (in target 'Runner')


Open "Terminal" and navigate to your flutter project.Then navigate inside "ios" folder by cd ios and run pod install.

For me the problem was that pods weren't installed.


Open the terminal, navigate to the project and type

rm ios/Podfile

After that build the project with

flutter build ios

It solved the problem for me.


try to install pod

cd iospod install

if it is not working, following this way

navigate ios/Podfile file and uncomment platform :ios, '9.0'(remove #)