-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathPodfile
More file actions
107 lines (85 loc) · 3.17 KB
/
Copy pathPodfile
File metadata and controls
107 lines (85 loc) · 3.17 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
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
107
inhibit_all_warnings!
target 'dashwallet' do
platform :ios, '18.0'
# Direct app-owned dependencies retained after the legacy wallet pod unlink.
pod 'CocoaLumberjack', '3.7.2'
pod 'DSDynamicOptions', '0.1.2'
pod 'DWAlertController', '0.2.1'
pod 'SQLite.swift', '~> 0.15.3'
pod 'SQLiteMigrationManager.swift', '0.8.3'
pod 'CloudInAppMessaging', '0.1.0'
pod 'FirebaseStorage', '8.15.0'
# CoreOnly provides the `Firebase` umbrella module (Firebase.h + its module
# map) that `@import Firebase` / `import Firebase` resolve against. It used to
# arrive implicitly as a dependency of Firebase/DynamicLinks; that subspec was
# removed, so depend on it directly.
pod 'Firebase/CoreOnly', '8.15.0'
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 'SDWebImage', '5.21.0', :modular_headers => true
pod 'SDWebImageSwiftUI', '3.1.3', :modular_headers => true
pod 'Moya', '~> 15.0'
pod 'SwiftJWT', '3.6.200'
pod 'TOCropViewController', '2.6.1'
# Debugging purposes
# pod 'Reveal-SDK', :configurations => ['Debug']
end
target 'dashpay' do
platform :ios, '18.0'
# Direct app-owned dependencies retained after the legacy wallet pod unlink.
pod 'CocoaLumberjack', '3.7.2'
pod 'DSDynamicOptions', '0.1.2'
pod 'DWAlertController', '0.2.1'
pod 'SQLite.swift', '~> 0.15.3'
pod 'SQLiteMigrationManager.swift', '0.8.3'
pod 'CloudInAppMessaging', '0.1.0'
pod 'FirebaseStorage', '8.15.0'
# CoreOnly provides the `Firebase` umbrella module (Firebase.h + its module
# map) that `@import Firebase` / `import Firebase` resolve against. It used to
# arrive implicitly as a dependency of Firebase/DynamicLinks; that subspec was
# removed, so depend on it directly.
pod 'Firebase/CoreOnly', '8.15.0'
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 'SDWebImage', '5.21.0', :modular_headers => true
pod 'SDWebImageSwiftUI', '3.1.3', :modular_headers => true
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, '18.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|
if target.platform_name == :ios
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '18.0'
elsif target.platform_name == :watchos
config.build_settings['WATCHOS_DEPLOYMENT_TARGET'] = '4.0'
end
end
end
end