Skip to content

Commit

Permalink
fix(swift5): upgrade deployment target to fix cocoapods deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Jun 5, 2024
1 parent 425728e commit 61650bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/swift5/Podspec.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Pod::Spec.new do |s|
s.summary = '{{.}}'{{/projectDescription}}
{{#useAlamofire}}
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '10.0'
{{/useAlamofire}}
{{^useAlamofire}}
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '9.0'
{{/useAlamofire}}
# Add back when CocoaPods/CocoaPods#11558 is released
Expand Down

0 comments on commit 61650bd

Please sign in to comment.