Swift3.x系で確認済みです。
pods installしたときにこういうエラーがでることがあります
1 2 3 4 5 |
[!] The `YOURPROJECTNAME [Debug]` target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build setting defined in `Pods/Target Support Files/Pods-YOURPROJECTNAME/Pods-YOURPROJECTNAME.debug.xcconfig'. This can lead to problems with the CocoaPods installation - Use the `$(inherited)` flag, or - Remove the build settings from the target. [!] The `YOURPROJECTNAME [Release]` target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build setting defined in `Pods/Target Support Files/Pods-YOURPROJECTNAME/Pods-YOURPROJECTNAME.release.xcconfig'. This can lead to problems with the CocoaPods installation |
xcodeの設定で解消できます
1.Project/Targets -> [Project Name] -> Build Settings.
2.”ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES”と検索
3.項目右のYesとなっている箇所をクリックしOtherを選択したのち、”$(inherited)”と入力
これでエラーはでなくなりました。