I\'ve encounter an strange issue after installing RestKit with cocoapods. after resolving RestKit dependency for my project with cocoapods and trying to build it, I face thi
For me, working in flutter, the configuration was not automatically added due the existing configuration.
Adding #include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"
to Flutter/Release.xcconfig
and Flutter/Debug.xcconfig
solved the issue.
My working answer is:
I found my solution: Run:pod update
instead of pod install
. The error was fixed!
${PODS_ROOT}/Manifest.lock
with:
${SRCROOT}/Podfile.lock" "${SRCROOT}/Pods/Manifest.lock
Check in image :
Run this, and your errors will vanish
rm -rf Pods && gem install cocoapods && pod install
Removing pods from the project and re-installing worked for me.
There is nice GitHub repository that can completely remove the pods from the project.
Just keep the backup of your PodFile and run below commands.
Clean and run.