platform :ios,
use_frameworks!
target do
pod , :path =>
pod
end
# Prevent warning where pod minimum deployment target isn't matching the project's one
# See https://stackoverflow.com/questions/54704207/the-ios-simulator-deployment-targets-is-set-to-7-0-but-the-range-of-supported-d
post_install do
pi.pods_project.targets.each do
t.build_configurations.each do
config.build_settings[] =
end
end
end