Errores después de actualizar a Xcode 8: “No existe tal módulo” y “el objetivo anula la configuración de construcción` EMBEDDED_CONTENT_CONTAINS_SWIFT` ”

Me estoy poniendoNo such module para Pods cuando intento construir el proyecto. Si elimino el código que espera este Pod, aparece otro 'No hay tal módulo' para otro Pod, lo que significa que cada Pod debe verse afectado. Cuando escribopod install Recibo los siguientes mensajes:

[!] 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.

Recibo cada uno de estos para las versiones de depuración y lanzamiento de mi aplicación y las dos pruebas, por lo que 12 mensajes en total.

Yo he puestoAlways Embed Swift Standard Libraries yEMBEDDED_CONTENT_CONTAINS_SWIFT aNO yYES tanto en mi configuración de compilación y esto no hizo nada. También agregué el siguiente código a mi Podfile y tampoco funcionó:

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

Respuestas a la pregunta(5)

Su respuesta a la pregunta