From 871549cca494ec3fe64763ac0fc448fd0a65e45a Mon Sep 17 00:00:00 2001 From: Tomek Zawadzki Date: Mon, 5 Feb 2024 11:49:17 +0100 Subject: [PATCH] fix: visionOS support (#2218) This PR fixes the following errors when compiling for visionOS: Unknown type name 'NSColor' --- RNSVG.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/RNSVG.podspec b/RNSVG.podspec index 9ac0098b..13846a0c 100644 --- a/RNSVG.podspec +++ b/RNSVG.podspec @@ -15,6 +15,7 @@ Pod::Spec.new do |s| s.source_files = 'apple/**/*.{h,m,mm}' s.ios.exclude_files = '**/*.macos.{h,m,mm}' s.tvos.exclude_files = '**/*.macos.{h,m,mm}' + s.visionos.exclude_files = '**/*.macos.{h,m,mm}' s.osx.exclude_files = '**/*.ios.{h,m,mm}' s.requires_arc = true