-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared.podspec
More file actions
31 lines (27 loc) · 1.36 KB
/
shared.podspec
File metadata and controls
31 lines (27 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |spec|
spec.name = 'shared'
spec.version = '0.0.11'
spec.homepage = 'https://www.phishar.com'
spec.source = { :git => 'https://github.com/dodsky/shared-pod-test.git', :tag => '0.0.11' }
spec.authors = ''
spec.license = { :type => 'MIT', :text => '' }
spec.summary = 'PhishAR Cocoapod'
spec.platform = :ios
spec.ios.deployment_target = '9.0'
spec.static_framework = true
spec.vendored_frameworks = "shared.framework"
spec.libraries = "c++"
spec.module_name = "#{spec.name}_umbrella"
spec.dependency 'Punycode-Cocoa'
spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.pod_target_xcconfig = {
'KOTLIN_TARGET[sdk=iphonesimulator*]' => 'ios_x64',
'KOTLIN_TARGET[sdk=iphoneos*]' => 'ios_arm',
'KOTLIN_TARGET[sdk=watchsimulator*]' => 'watchos_x86',
'KOTLIN_TARGET[sdk=watchos*]' => 'watchos_arm',
'KOTLIN_TARGET[sdk=appletvsimulator*]' => 'tvos_x64',
'KOTLIN_TARGET[sdk=appletvos*]' => 'tvos_arm64',
'KOTLIN_TARGET[sdk=macosx*]' => 'macos_x64'
}
end