-
Notifications
You must be signed in to change notification settings - Fork 17
/
Podfile
106 lines (82 loc) · 3.03 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
inhibit_all_warnings!
target 'dashwallet' do
platform :ios, '14.0'
pod 'DashSync', :path => '../DashSync/'
pod 'SQLite.swift', '~> 0.13.3'
pod 'SQLiteMigrationManager.swift'
pod 'CloudInAppMessaging', '0.1.0'
pod 'FirebaseStorage', '8.15.0'
pod 'Firebase/DynamicLinks'
pod 'SSZipArchive'
pod 'KVO-MVVM', '0.5.6'
pod 'UIViewController-KeyboardAdditions', '1.2.1'
pod 'MBProgressHUD', '1.1.0'
pod 'MMSegmentSlider', :git => 'https://github.com/podkovyrin/MMSegmentSlider', :commit => '2d91366'
pod 'CocoaImageHashing', :git => 'https://github.com/ameingast/cocoaimagehashing.git', :commit => 'ad01eee'
pod 'SDWebImage', '5.13.2'
pod 'Moya', '~> 15.0'
pod 'SwiftJWT', '3.6.200'
# Debugging purposes
# pod 'Reveal-SDK', :configurations => ['Debug']
end
target 'dashpay' do
platform :ios, '14.0'
pod 'DashSync', :path => '../DashSync/'
pod 'SQLite.swift', '~> 0.13.3'
pod 'SQLiteMigrationManager.swift'
pod 'CloudInAppMessaging', '0.1.0'
pod 'FirebaseStorage', '8.15.0'
pod 'Firebase/DynamicLinks'
pod 'SSZipArchive'
pod 'KVO-MVVM', '0.5.6'
pod 'UIViewController-KeyboardAdditions', '1.2.1'
pod 'MBProgressHUD', '1.1.0'
pod 'MMSegmentSlider', :git => 'https://github.com/podkovyrin/MMSegmentSlider', :commit => '2d91366'
pod 'CocoaImageHashing', :git => 'https://github.com/ameingast/cocoaimagehashing.git', :commit => 'ad01eee'
pod 'SDWebImage', '5.13.2'
pod 'Moya', '~> 15.0'
pod 'SwiftJWT', '3.6.200'
pod 'TOCropViewController', '2.6.1'
# Debugging purposes
# pod 'Reveal-SDK', :configurations => ['Debug']
target 'DashWalletTests' do
inherit! :search_paths
end
target 'DashWalletScreenshotsUITests' do
inherit! :search_paths
end
end
target 'TodayExtension' do
platform :ios, '13.0'
pod 'DSDynamicOptions', '0.1.2'
end
target 'WatchApp' do
platform :watchos, '4.0'
end
target 'WatchApp Extension' do
platform :watchos, '4.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
# fixes warnings about unsupported Deployment Target in Xcode
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
# Hide warnings for specific pods
if ["gRPC"].include? target.name
target.build_configurations.each do |config|
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = 'YES'
end
end
# temporary solution to work with gRPC-Core
# see https://github.com/CocoaPods/CocoaPods/issues/8474
if target.name == 'secp256k1_dash'
target.build_configurations.each do |config|
config.build_settings['HEADER_SEARCH_PATHS'] = '"${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/secp256k1_dash" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/secp256k1_dash" "${PODS_ROOT}/secp256k1_dash"'
end
end
end
# update info about current DashSync version
# the command runs in the background after 1 sec, when `pod install` updates Podfile.lock
system("(sleep 1; sh ./scripts/dashsync_version.sh) &")
end