From cdb969c495604a96bffa7f9cbae349b7cd13f6a8 Mon Sep 17 00:00:00 2001 From: Boris Borgobello Date: Fri, 29 Oct 2021 17:28:42 +0200 Subject: [PATCH] Fix podspec --- AVPlayerDNAPlugin.podspec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/AVPlayerDNAPlugin.podspec b/AVPlayerDNAPlugin.podspec index b4503d5..145af93 100644 --- a/AVPlayerDNAPlugin.podspec +++ b/AVPlayerDNAPlugin.podspec @@ -15,5 +15,12 @@ Pod::Spec.new do |s| s.ios.deployment_target = '10.2' s.tvos.deployment_target = '10.2' s.dependency 'StreamrootSDK', '~> 3.25.1' - s.pod_target_xcconfig = { 'VALID_ARCHS' => 'x86_64 armv7 arm64' } + s.pod_target_xcconfig = { + 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', + 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64' + } + s.user_target_xcconfig = { + 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', + 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64' + } end \ No newline at end of file