From 4be65d4e8469764d846799eb3b77cb58b1cb0b2c Mon Sep 17 00:00:00 2001 From: sanghun0724 Date: Sat, 18 May 2024 20:08:47 +0900 Subject: [PATCH] add the deployment_target for visionOS in Podspec --- RxBlocking.podspec | 1 + RxCocoa.podspec | 1 + RxRelay.podspec | 1 + RxSwift.podspec | 1 + 4 files changed, 4 insertions(+) diff --git a/RxBlocking.podspec b/RxBlocking.podspec index d455cf671..5c6944099 100644 --- a/RxBlocking.podspec +++ b/RxBlocking.podspec @@ -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' diff --git a/RxCocoa.podspec b/RxCocoa.podspec index e29dc700a..0d04f37dd 100644 --- a/RxCocoa.podspec +++ b/RxCocoa.podspec @@ -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' diff --git a/RxRelay.podspec b/RxRelay.podspec index d6d46bbb7..83727b67b 100644 --- a/RxRelay.podspec +++ b/RxRelay.podspec @@ -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}' diff --git a/RxSwift.podspec b/RxSwift.podspec index 36328f7f9..be70b6f62 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -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'