Skip to content

Commit

Permalink
Fix podspec as pod version supports iOS 8+ but podspec says iOS 7+
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaspik committed Mar 1, 2019
1 parent ee95094 commit b3c4a78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AFNetworking.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Pod::Spec.new do |s|
EOS
s.prefix_header_contents = pch_AF

s.ios.deployment_target = '7.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
Expand All @@ -47,7 +47,7 @@ EOS
end

s.subspec 'Reachability' do |ss|
ss.ios.deployment_target = '7.0'
ss.ios.deployment_target = '8.0'
ss.osx.deployment_target = '10.9'
ss.tvos.deployment_target = '9.0'

Expand All @@ -69,7 +69,7 @@ EOS
end

s.subspec 'UIKit' do |ss|
ss.ios.deployment_target = '7.0'
ss.ios.deployment_target = '8.0'
ss.tvos.deployment_target = '9.0'
ss.dependency 'AFNetworking/NSURLSession'

Expand Down

0 comments on commit b3c4a78

Please sign in to comment.