Skip to content

Commit

Permalink
Updated iOS deployment target to 10 in podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanhimmelman authored May 18, 2020
1 parent 0b96a73 commit a593b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ObjectMapper.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/tristanhimmelman/ObjectMapper.git', :tag => s.version.to_s }

s.watchos.deployment_target = '2.0'
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'

Expand Down

1 comment on commit a593b4d

@tbechtum
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using Xcode 12 we get this warning

The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.1.99.

Could this project and its targets be moved to iOS 10 and later to avoid this warning?

Please sign in to comment.