-
Notifications
You must be signed in to change notification settings - Fork 7
/
Podfile
35 lines (29 loc) · 961 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
using_local_pods = ENV['USE_LOCAL_PODS'] == 'true' || false
platform :ios, '11.0'
if using_local_pods
# Pull pods from sibling directories if using local pods
target 'EosioSwiftSoftkeySignatureProvider' do
use_frameworks!
pod 'EosioSwift', :path => '../eosio-swift'
pod 'EosioSwiftEcc', :path => '../eosio-swift-ecc'
pod 'SwiftLint'
target 'EosioSwiftSoftkeySignatureProviderTests' do
inherit! :search_paths
pod 'EosioSwift', :path => '../eosio-swift'
pod 'EosioSwiftEcc', :path => '../eosio-swift-ecc'
end
end
else
# Pull pods from sources above if not using local pods
target 'EosioSwiftSoftkeySignatureProvider' do
use_frameworks!
pod 'EosioSwift', '~> 0.4.0'
pod 'EosioSwiftEcc', '~> 0.4.0'
pod 'SwiftLint'
target 'EosioSwiftSoftkeySignatureProviderTests' do
inherit! :search_paths
pod 'EosioSwift', '~> 0.4.0'
pod 'EosioSwiftEcc', '~> 0.4.0'
end
end
end