Skip to content

Commit

Permalink
Fix watchos deployment target in podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
SD10 committed Nov 19, 2018
1 parent aca54fb commit 527473b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Moya.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Pod::Spec.new do |s|
s.social_media_url = "http://twitter.com/ashfurrow"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/Moya/Moya.git", :tag => s.version }
s.default_subspec = "Core"
Expand All @@ -27,12 +26,14 @@ Pod::Spec.new do |s|
ss.dependency "Alamofire", "~> 4.1"
ss.dependency "Result", "~> 4.0"
ss.framework = "Foundation"
ss.watchos.deployment_target = '2.0'
end

s.subspec "ReactiveSwift" do |ss|
ss.source_files = "Sources/ReactiveMoya/"
ss.dependency "Moya/Core"
ss.dependency "ReactiveSwift", "~> 4.0"
ss.watchos.deployment_target = '2.0'
end

s.subspec "RxSwift" do |ss|
Expand Down

0 comments on commit 527473b

Please sign in to comment.