forked from tangem/blockchain-sdk-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlockchainSdk.podspec
61 lines (52 loc) · 2.33 KB
/
BlockchainSdk.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#
# Be sure to run `pod lib lint BlockchainSdk.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'BlockchainSdk'
s.version = '0.0.1'
s.summary = 'Use BlockchainSdk for Tangem wallet integration'
s.description = <<-DESC
Use BlockchainSdk for Tangem wallet integration
DESC
s.homepage = 'https://github.com/tangem/blockchain-sdk-swift'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Tangem' => '[email protected]' }
s.source = { :git => 'https://github.com/tangem/blockchain-sdk-swift.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/Tangem'
s.ios.deployment_target = '14.5'
s.swift_version = '5.0'
s.source_files = 'BlockchainSdk/**/*'
s.resource_bundles = {
'BlockchainSdk' => [
'BlockchainSdk/Common/Localizations/*.lproj/*.strings',
'BlockchainSdk/PrivacyInfo.xcprivacy',
]
}
s.exclude_files = 'BlockchainSdk/Blockchains/XRP/XRPKit/README.md',
'BlockchainSdk/Blockchains/XRP/XRPKit/LICENSE',
'BlockchainSdk/Blockchains/Tron/protobuf/Tron Protobuf.md',
'BlockchainSdk/Blockchains/Tron/protobuf/*.proto',
'BlockchainSdk/Blockchains/Koinos/protobuf/*.proto',
'BlockchainSdk/PrivacyInfo.xcprivacy'
# 'Hedera SDK' dependency must be added via SPM
# 'CryptoSwift' dependency must be added via SPM
# 'SwiftProtobuf' dependency must be added via SPM
# 'TangemWalletCore' dependency must be added via SPM
# 'BigInt' dependency must be added via SPM
# 'ScaleCodec' dependency must be added via SPM
# 'TonSwift' dependency must be added via SPM
s.dependency 'TangemSdk'
s.dependency 'SwiftyJSON', '5.0.1'
s.dependency 'Moya', '15.0.0'
s.dependency 'Sodium', '0.9.1'
s.dependency 'SwiftCBOR', '0.4.5'
s.dependency 'stellar-ios-mac-sdk', '2.5.4'
s.dependency 'AnyCodable-FlightSchool', '0.6.7'
s.dependency 'BinanceChain' # Fork https://github.com/tangem/swiftbinancechain.git
s.dependency 'BitcoinCore.swift' # Fork https://github.com/tangem/bitcoincore.git
s.dependency 'Solana.Swift' # Fork https://github.com/tangem/Solana.Swift.git
end