IG
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
if target.name == "PINCache" or target.name == "PINRemoteImage"
puts "Updating #{target.name} OTHER_CFLAGS"
target.build_configurations.each do |config|
config.build_settings['OTHER_CFLAGS'] = '-Xclang -fcompatibility-qualified-id-block-type-checking'
end
end
end
end