forked from LN-Zap/zap-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
57 lines (45 loc) · 1.34 KB
/
Podfile
File metadata and controls
57 lines (45 loc) · 1.34 KB
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, '10.0'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods'
abstract_target 'Apps' do
pod 'SwiftBTC'
target 'Zap' do
end
target 'ZapPos' do
end
end
abstract_target 'RPC' do
pod 'LndRpc', :path => '.'
target 'SwiftLnd' do
pod 'SwiftBTC'
pod 'SwiftProtobuf'
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-Apps-Zap/Pods-Apps-Zap-acknowledgements.plist', 'Zap/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
FileUtils.cp_r('Pods/Target Support Files/Pods-Apps-ZapPos/Pods-Apps-ZapPos-acknowledgements.plist', 'ZapPos/Settings.bundle/Acknowledgements.plist', :remove_destination => true)
end