Scott Southerland

Results 8 comments of Scott Southerland

If you want to fix this automatically you can put this in your Podfile ``` post_integrate do |installer| patch_cocoapods_binary_dsyms(installer) end def patch_cocoapods_binary_dsyms(installer) installer.generated_projects.each do |project| project.targets.each do |target| target.shell_script_build_phases.each do...

Hey @calvincestari , thank you for the speedy response and fix. The fix you posted *does* fix the compilation of the Apollo pod, however all of my generated code from...

> Hey @calvincestari , thank you for the speedy response and fix. The fix you posted _does_ fix the compilation of the Apollo pod, however all of my generated code...

As i mentioned our codegen is actually a separate project which uses SPM because we have our graphQL libraries in a separate repo. So i'm not 100% sure if that...

For 1. We have a separate project entirely for codegen. It's actually even in a different repo. It uses swift package manager. For 3. Our client which consumes Apollo and...

We do not use `selectionSetInitializers`. We initialized our usages of direct initializations due in early apollo 1.0 and never added them back.

Here is a pull request for this issue: https://github.com/Iterable/swift-sdk/pull/795