Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add the deployment_target for visionOS in Podspec #2603

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading