forked from horizontalsystems/ethereum-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
57 lines (41 loc) · 864 Bytes
/
Podfile
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
platform :ios, '11.0'
use_frameworks!
inhibit_all_warnings!
workspace 'EthereumKit'
project 'EthereumKit/EthereumKit'
project 'Erc20Kit/Erc20Kit'
project 'EthereumKitDemo/EthereumKitDemo'
def common_pods
pod 'RxSwift', '~> 5.0'
pod 'HSCryptoKit', '~> 1.4'
pod 'HSHDWalletKit', '~> 1.1'
pod 'GRDB.swift', '~> 4.0'
pod 'Alamofire', '~> 4.0'
pod 'BigInt', '~> 4.0'
end
def test_pods
pod 'Cuckoo'
pod 'Quick'
pod 'Nimble'
end
target :EthereumKit do
project 'EthereumKit/EthereumKit'
common_pods
pod 'Geth', '~> 1.8'
end
target :Erc20Kit do
project 'Erc20Kit/Erc20Kit'
common_pods
end
target :EthereumKitDemo do
project 'EthereumKitDemo/EthereumKitDemo'
common_pods
end
target :EthereumKitTests do
project 'EthereumKit/EthereumKit'
test_pods
end
target :Erc20KitTests do
project 'Erc20Kit/Erc20Kit'
test_pods
end