cocoapods Target overrides the `OTHER_SWIFT_FLAGS` build setting

前端之家收集整理的这篇文章主要介绍了cocoapods Target overrides the `OTHER_SWIFT_FLAGS` build setting前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
platform :ios,'8.0'
use_frameworks!


target 'TestApp' do
...

end

Afterpod installI get the following errors:


[!] The `TestApp [Release]` target overrides the `OTHER_SWIFT_FLAGS` build setting defined in `Pods/Target Support Files/Pods-TestApp/Pods-TestApp.release.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the `$(inherited)` flag,or

- Remove the build settings from the target.

How do I resolve this problem?

  1. Select your project

  2. Switch to your project 'sBuild Settingspanel.

  3. Search forOther Swift Flag


Use the$(inherited)flag,or - Remove the build settings from the target.

原文链接:https://www.f2er.com/swift/320498.html

猜你在找的Swift相关文章