iOS pod update遇到The ‘Pods-XXX‘ target has transitive dependencies that include statically linked binaries这个问题经过查询资料可以通过在Podfile添加如下配置解决
pre_install do |installer|
# workaround for https://github.com/CocoaPods/CocoaPods/issues/3289
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_static_framework_transitive_dependencies) {}
end