forked from magiclabs/magic-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MagicSDK.podspec
30 lines (24 loc) · 977 Bytes
/
MagicSDK.podspec
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
#
# Podspec for Cocoapod
#
Pod::Spec.new do |s|
s.name = 'MagicSDK'
s.version = '10.0.0'
s.summary = 'Magic IOS SDK'
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.homepage = 'https://github.com/magiclabs/magic-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Jerry Liu' => '[email protected]' }
s.source = { :git => 'https://github.com/magiclabs/magic-ios.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '13.0'
# s.osx.deployment_target = '10.15'
s.source_files = 'Sources/MagicSDK/**/*'
s.dependency 'MagicSDK-Web3', '~> 1.0'
s.dependency 'MagicSDK-Web3/ContractABI', '~> 1.0'
s.dependency 'MagicSDK-Web3/PromiseKit', '~> 1.0'
s.dependency 'PromiseKit/CorePromise', '~> 6.15'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end