forked from LN-Zap/zap-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
60 lines (47 loc) · 1.43 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
50
51
52
53
54
55
56
57
58
59
60
platform :ios, '10.3'
use_frameworks!
inhibit_all_warnings!
install! 'cocoapods'
target 'Zap' do
end
target 'SnapshotUITests' do
pod 'SimulatorStatusMagic', :configurations => ['Debug']
end
abstract_target 'RPC' do
pod 'SwiftBTC', :path => './SwiftBTC'
target 'SwiftLnd' do
pod 'SwiftGRPC'
pod 'ReachabilitySwift'
target 'SwiftLndTests' do
inherit! :search_paths
end
end
target 'Library' do
pod 'mantaswift', :git => 'https://github.com/NanoRay/mantaswift'
pod 'SwiftSocket', :git => 'https://github.com/swiftsocket/SwiftSocket.git'
pod 'KeychainAccess'
pod 'Bond'
target 'LibraryTests' do
inherit! :search_paths
end
end
target 'Lightning' do
pod 'Bond'
target 'LightningTests' do
inherit! :search_paths
end
end
target 'Widget' do
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)
# don't include pod dsyms
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf'
end
end
end