Skip to content

Commit

Permalink
add the deployment_target for visionOS in Podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
sanghun0724 committed May 18, 2024
1 parent e2b0aa8 commit 4be65d4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions RxBlocking.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Waiting for observable sequence to complete before exiting command line applicat
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.visionos.deployment_target = "1.0" if s.respond_to?(:visionos)

s.source_files = 'RxBlocking/**/*.swift', 'Platform/**/*.swift'
s.exclude_files = 'RxBlocking/Platform/**/*.swift'
Expand Down
1 change: 1 addition & 0 deletions RxCocoa.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.visionos.deployment_target = "1.0" if s.respond_to?(:visionos)

s.header_dir = "RxCocoa"
s.source_files = 'RxCocoa/**/*.{swift,h,m}', 'Platform/**/*.swift'
Expand Down
1 change: 1 addition & 0 deletions RxRelay.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Relays for RxSwift - PublishRelay, BehaviorRelay and ReplayRelay
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.visionos.deployment_target = "1.0" if s.respond_to?(:visionos)

s.source_files = 'RxRelay/**/*.{swift,h,m}'

Expand Down
1 change: 1 addition & 0 deletions RxSwift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ gitDiff().grep("bug").less // sequences of swift objects
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.visionos.deployment_target = "1.0" if s.respond_to?(:visionos)

s.source_files = 'RxSwift/**/*.swift', 'Platform/**/*.swift'
s.exclude_files = 'RxSwift/Platform/**/*.swift'
Expand Down

0 comments on commit 4be65d4

Please sign in to comment.