Skip to content

Commit

Permalink
fix: add visionOS deployment target conditionally
Browse files Browse the repository at this point in the history
Co-authored-by: Xavi Amorós <[email protected]>
Co-authored-by: Dorian Mazur <[email protected]>
  • Loading branch information
3 people authored Sep 22, 2024
1 parent 099f004 commit f6bc521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RNKeychain.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
s.visionos.deployment_target = '1.0'
s.visionos.deployment_target = '1.0' if s.respond_to?(:visionos)
s.source = { :git => "https://github.com/oblador/react-native-keychain.git", :tag => "v#{s.version}" }
s.source_files = 'ios/RNKeychainManager/**/*.{h,m}'
s.preserve_paths = "**/*.js"
Expand Down

0 comments on commit f6bc521

Please sign in to comment.