Я получаю No such module
для Pods, когда я пытаюсь построить проект. Если я удалю код, ожидающий этого Pod, другой "Нет такого модуля" подходит для другого Pod, что означает, что каждый Pod должен быть затронут. Когда я набираю pod install
, я получаю следующие сообщения:
[!] 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.
Я получаю каждый из них как для отладки, так и для выпуска версий моего приложения и двух тестов, поэтому всего 12 сообщений.
Я установил Always Embed Swift Standard Libraries
и EMBEDDED_CONTENT_CONTAINS_SWIFT
в NO
и YES
как в моих настройках сборки, так и ничего не сделал. Я также добавил следующий код в свой подфайл, и он тоже не работал:
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