Skip to content

Commit

Permalink
Cocoapods work-around for missing arm64 simulator support
Browse files Browse the repository at this point in the history
  • Loading branch information
matteblair committed Feb 1, 2021
1 parent ebaa77e commit 06bbf0e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions platforms/ios/framework/Tangram-es.podspec
Expand Up @@ -17,6 +17,9 @@ Pod::Spec.new do |s|
s.platform = :ios
s.ios.deployment_target = '9.3'

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'}

s.requires_arc = true

s.vendored_frameworks = 'TangramMap.framework'
Expand Down

1 comment on commit 06bbf0e

@matteblair
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See CocoaPods/CocoaPods#10104 for discussion of this issue and the work-around.

Please sign in to comment.