Cocoapods no longer builds project after upgrade?

After upgrading to the latest version of cocoapods, I can no longer generate the project. Removing the latest version and reverting to the old version also does not solve the problem.

Exact code worked fine before cocoapods update

[!] The target MyApplication [App Store]overrides the build setting HEADER_SEARCH_PATHSdefined in the Files / Custom Support Files / Prepare-MyApplication / Pods-MyApplication.app store.xcconfig section. This can lead to problems installing CocoaPods.

- Use the `$(inherited)` flag, or

- Remove the build settings from the target.
+4
source share
2 answers

- Remove the build settings from the target.

Xcode. ( ). , HEADER_SEARCH_PATHS . ( ) . BOLD, .

, , (.. ), COMMAND + DELETE. , Target "".

, Wrapper - . ( - , Xcode).

enter image description here

+9

.xcodeproj :

FRAMEWORK_SEARCH_PATHS = (
                "$(inherited)",
                "$(PROJECT_DIR)",
                "$(PROJECT_DIR)/Frameworks",
            );
-1

All Articles