Errors after updating to Xcode 8: "No such module" and "target overrides the `EMBEDDED_CONTENT_CONTAINS_SWIFT`build setting"

20,315

Solution 1

[!] The `X` target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build setting defined in `X'. This can lead to problems with the CocoaPods installation
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.

I had met this problem today. I solved it by

  1. Go to Project/Targets -> [Project Name] -> Build Settings.
  2. search "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES"
  3. click the right of Debug, and selected 'Other', input "$(inherited)"
  4. do same with 'Release' and install your pod

You can follow the image below.


enter image description here

Solution 2

The errors you see when running pod install should not cause the No such module errors. So my guess is that these errors are unrelated.


To get rid of the pod install errors:

This happens because you define a flag in your build settings which overrides that set by CocoaPods. It doesn't matter if you set it to YES or NO, it will still overwrite the setting from CocoaPods.

To fix this:

  1. Go to Project/Targets -> [Project Name] -> Build Settings.
  2. Find and click on the relevant setting (you can use the search box in the top right corner).
  3. Press Backspace to remove the setting.

You should see the setting going from bold to normal font. This means that the setting has been deleted, and is using a default value instead.

Repeat for each flag giving you an error, and rerun pod install to verify that it worked.


Reasons for No such module errors:

There are a number of way that this error can occur. Have you looked at these answers to see if any applies to your case? If you report back on that it will be easier to help you.

  1. Xcode : “No such module” error, but the framework is there
  2. “no such module” on Xcode 7 beta 2

Solution 3

(Updated as of July 29, 2018)

  1. Projects/Targets --> Project Name --> Build Settings
  2. Build Options
  3. Click on Always Embed Swift Standard Libraries so that it is highlighted
  4. Press the delete button on your keyboard

The Always Embed Swift Standard Libraries should no longer be Bold, and you will no longer receive this warning when performing pod updates or pod installs =)

Solution 4

This is what I worked for me:

pod deintegrate || rm -rf Pods
pod install --verbose
rm -rf ~/Library/Developer/Xcode/DerivedData

Then I just clean my project and build it again.

Share:
20,315
Questioner
Author by

Questioner

Updated on July 05, 2022

Comments

  • Questioner
    Questioner almost 2 years

    I'm getting No such module for Pods when I try to build the project. If I remove the code expecting this Pod, another 'No such module' comes up for another Pod, which means every Pod must be affected. When I type pod install I get the following messages:

    [!] The X target overrides the `EMBEDDED_CONTENT_CONTAINS_SWIFT` build setting defined in `X’. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.
    
    [!] The `X` target overrides the `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` build setting defined in `X'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.
    

    I get each of these for both the debug and release versions of my app and the two tests, so 12 messages in total.

    I have set Always Embed Swift Standard Libraries and EMBEDDED_CONTENT_CONTAINS_SWIFT to NO and YES both in my Build Settings and this did nothing. I also added the following code to my Podfile and it didn't work either:

    post_install do |installer|
    installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'NO'
        end
    end
    end
    
  • Nahouto
    Nahouto over 7 years
    I tried to do this but error "no such module" still appears
  • AWebster
    AWebster over 7 years
    This worked for me to fix the pod install/update. However Xcode (8) then issued a warning to update settings and revert the changes.
  • Zayin Krige
    Zayin Krige over 7 years
    bit of a shotgun approach, but yeh, a clean install often helps
  • Naloiko Eugene
    Naloiko Eugene over 7 years
    I had to set it this way for the PROJECT, and all TARGETS. And no more warnings in the terminal :)
  • Iulian Onofrei
    Iulian Onofrei over 7 years
    Why isn't cocoapods doing this on init?
  • Sébastien REMY
    Sébastien REMY over 7 years
    it's make a lost of warning to me :(
  • pableiros
    pableiros over 7 years
    @iLandes this is what is worked for me, maybe you are doing something different to get all the lost of warnings
  • Chlebta
    Chlebta over 7 years
    I get always No - $(inherited) I can't set it to YES- $(inherited) like in screenshot
  • Stark
    Stark over 7 years
    Just choose Other. Follow my step3
  • Verticon
    Verticon over 7 years
    This worked for me: pod install no longer generates warning. I did it for both of my target settings; App and Tests. I did not do it for the project settings.
  • uɥƃnɐʌuop
    uɥƃnɐʌuop about 7 years
    @Chlebta, that happened to me, too, but it was because I was setting the $(inherited) under the Project section and not under the Targets section (as shown in the snapshot in the Projects & Targets list). Also, having not set the correct ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES variable, cocoapods was still giving me the warning.
  • Juan
    Juan about 7 years
    So, the steps to fix it are: 1st.- Remove the SD (in the finder) 2nd.- Delete the project in the simulator 3rd.- Import SD again If so, next time try to edit and give a better format to your answer. Welcome to SO.
  • Ariven Nadar
    Ariven Nadar almost 7 years
    Thanks it worked, but it will not effect any other functionality right ?
  • BennyTheNerd
    BennyTheNerd almost 7 years
    @ArivenNadar, no, not that I'm aware of
  • Admin
    Admin almost 7 years
    07/10/2017, This solution worked for me in a mixed Swift/Obj C Project/Pods
  • Idrees Ashraf
    Idrees Ashraf almost 7 years
    @Chlebta select "Yes" and then select "Other..." now input $(inherited).
  • user805981
    user805981 over 6 years
    I'm still getting warnings 2017/10/23.... To get this working you must go through all targets and make sure they are all not bold. This includes Test as well.