| 1 |
# Uncomment the next line to define a global platform for your project |
| 2 |
|
| 3 |
target 'goingson-desktop_iOS' do |
| 4 |
platform :ios, '14.0' |
| 5 |
# Pods for goingson-desktop_iOS |
| 6 |
end |
| 7 |
|
| 8 |
target 'goingson-desktop_macOS' do |
| 9 |
platform :osx, '11.0' |
| 10 |
# Pods for goingson-desktop_macOS |
| 11 |
end |
| 12 |
|
| 13 |
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile |
| 14 |
post_install do |installer| |
| 15 |
installer.pods_project.targets.each do |target| |
| 16 |
target.build_configurations.each do |config| |
| 17 |
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' |
| 18 |
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET' |
| 19 |
end |
| 20 |
end |
| 21 |
end |
| 22 |
|