forked from LN-Zap/zap-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
49 lines (39 loc) · 1.05 KB
/
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
platform :ios, '10.0'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods'
target 'Zap' do
pod 'SwiftBTC'
end
abstract_target 'RPC' do
pod 'LndRpc', :path => '.'
target 'SwiftLnd' do
pod 'SwiftBTC'
target 'SwiftLndTests' do
inherit! :search_paths
end
end
target 'Library' do
pod 'SwiftBTC'
pod 'ScrollableGraphView'
pod 'KeychainAccess'
pod 'Bond'
target 'LibraryTests' do
inherit! :search_paths
end
end
target 'Lightning' do
pod 'SwiftBTC'
pod 'Bond'
pod 'KeychainAccess'
pod 'SQLite.swift', '~> 0.11.5'
target 'LightningTests' do
inherit! :search_paths
end
end
end
post_install do | installer |
# Copy Acknowledgements to Settings.bundle
require 'fileutils'
FileUtils.cp_r('Pods/Target Support Files/Pods-Zap/Pods-Zap-acknowledgements.plist', 'Zap/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end