Hello tech guys/girls. If you have ever encounter any of these error while building your flutter project in xcode
Example error 1: could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig' in search paths
Example error 2: could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig' in search paths
Then it is obvious that there was a mistake in the path you set in ios/Flutter/Release.xcconfig and in ios/Flutter/Debug.xcconfig
SOLUTION:
Update those files with the below paths
Solve for Error 1, Open Flutter/Release.xcconfig
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"
#include "Generated.xcconfig"
Solve for Error 2, Open Flutter/Debug.xcconfig
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"
SHARE THIS POST
0 comments:
Post a Comment