Why after pod install throw that error?

I was use pod install for my project and it throw error like below.

"[!] The MyApp [Debug] target overrides the FRAMEWORK_SEARCH_PATHS build setting defined in Pods/Target Support Files/Pods-MyApp/Pods-MyApp.debug.xcconfig'. This can lead to problems with the CocoaPods installation   - Use the $(inherited)` flag, or   - Remove the build settings from the target."

even I try to fix the xcode with $(inherited) in project target and project, it is still same. I don't know what I miss?

Answered by skysoft13 in 679036022

I had a $(inherited) but recursive, just change it to non-recursive project target -> build settings -> framework_search_path

Accepted Answer

I had a $(inherited) but recursive, just change it to non-recursive project target -> build settings -> framework_search_path

Why after pod install throw that error?
 
 
Q