cocoapods報錯:
[!] The `xxx [Debug]` target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build setting defined in `Pods/Target Support Files/Pods-xxx/Pods-xxx.debug.xcconfig'. This can lead to problems with the CocoaPods installation
如下圖

image.png
解決方案黃色字體中已經(jīng)給出了:
- Use the
$(inherited)flag, or - Remove the build settings from the target.
復(fù)制"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES"在TARGETS -> Build Settings -> 搜索框粘貼"ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES"并搜索,在輸入框中輸入$(inherited) 或者 直接將ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES該項刪除

image.png

image.png