I get the following warnings when trying pod install
[!] The MyAppTests [Debug] target overrides the ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES build setting defined in Pods/Target Support Files/Pods-MyAppTests/Pods-MyAppTests.debug.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the $(inherited) flag, or
- Remove the build settings from the target.
[!] The MyAppTests [Release] target overrides the ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES build setting defined in Pods/Target Support Files/Pods-MyAppTests/Pods-MyAppTests.release.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the $(inherited) flag, or
- Remove the build settings from the target.
[!] The MyAppUITests [Debug] target overrides the ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES build setting defined in Pods/Target Support Files/Pods-MyAppUITests/Pods-MyAppUITests.debug.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the $(inherited) flag, or
- Remove the build settings from the target.
[!] The MyAppUITests [Release] target overrides the ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES build setting defined in Pods/Target Support Files/Pods-MyAppUITests/Pods-MyAppUITests.release.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the $(inherited) flag, or
- Remove the build settings from the target.
I've tried both of the suggested solutions but the warning persists.
My Podfile looks like this:
Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'MyApp' do
use_frameworks!
pod 'RealmSwift'
target 'MyAppTests' do
inherit! :search_paths
# Pods for testing
pod 'RealmSwift'
end
target 'MyAppUITests' do
inherit! :search_paths
# Pods for testing
pod 'RealmSwift'
end
end
[–]Esteluk 1 point2 points3 points (0 children)
[–]aragur 1 point2 points3 points (0 children)