# Uncomment the next line to define a global platform for your project
target do
platform :ios,
# Pods for {{app.name}}_iOS
{{~#each ios-pods}}
pod {{#if this.version}}, '{{this.version}}'{{/if}}{{/each}}
end
target do
platform :osx,
# Pods for {{app.name}}_macOS
{{~#each macos-pods}}
pod {{#if this.version}}, '{{this.version}}'{{/if}}{{/each}}
end
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
post_install do
installer.pods_project.targets.each do
target.build_configurations.each do
config.build_settings.delete
config.build_settings.delete
end
end
end