Je reçois No such module
pour les Gousses quand j'essaie de compiler le projet. Si je supprime le code attend à ce Pod, un autre " un tel module est livré pour une autre Pdd, ce qui signifie que chaque Pod doit être touchés. Quand je tape pod install
j'obtiens les messages suivants:
[!] 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.
Je reçois chacune de ces pour les deux versions debug et release de mon application, et le deux essais, donc 12 messages au total.
J'ai mis en Always Embed Swift Standard Libraries
et EMBEDDED_CONTENT_CONTAINS_SWIFT
de NO
et YES
à la fois dans mes Paramètres de génération et cela n'a rien fait. J'ai aussi ajouté le code suivant à mon Podfile et il ne fonctionne pas non plus:
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