Reputation: 11
aninarafath@ANINs-MacBook-Air ios % pod install Analyzing dependencies Downloading dependencies Generating Pods project Integrating client project Pod installation complete! There are 2 dependencies from the Podfile and 2 total pods installed.
[!] CocoaPods did not set the base configuration of your project because your project already has a custom config set. In order for CocoaPods integration to work at all, please either set the base configurations of the target Runner
to Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig
or include the Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig
in your build configuration (Flutter/Release.xcconfig
).
any one know why getting this error?
pode file
Upvotes: 1
Views: 1806
Reputation: 1304
This error is due to the mechanics of flutter and can be ignored. Read the corresponding github issue: https://github.com/flutter/flutter/issues/73845
Upvotes: 0
Reputation: 133
Just go to project settings and then the Info tab in Xcode And set the configurations setting to None for the Pods-related targets,
Close the Xcode and Then run pod install again.
Upvotes: -1