-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
65 lines (53 loc) · 1.24 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
source 'https://cdn.cocoapods.org/'
workspace './Moments.xcworkspace'
project './Moments/Moments.xcodeproj'
platform :ios, '14.0'
use_frameworks!
# ignore all warnings from all dependencies
inhibit_all_warnings!
def dev_pods
pod 'SwiftLint', '0.40.3', configurations: ['Debug']
pod 'SwiftGen', '6.4.0', configurations: ['Debug']
end
def core_pods
pod 'RxSwift', '5.1.1'
pod 'RxRelay', '5.1.1'
pod 'Alamofire', '5.3.0'
end
def thirdparty_pods
pod 'Firebase/Analytics', '8.4.0'
end
def ui_pods
pod 'SnapKit', '5.0.1'
pod 'Kingfisher', '5.15.6'
pod 'RxCocoa', '5.1.1'
pod 'RxDataSources', '4.0.1'
end
def internal_pods
pod 'DesignKit', :path => './Frameworks/DesignKit', :inhibit_warnings => false
end
def test_pods
pod 'Quick', '3.0.0'
pod 'Nimble', '9.0.0'
pod 'RxTest', '5.1.1'
pod 'RxBlocking', '5.1.1'
end
target 'Moments' do
dev_pods
core_pods
thirdparty_pods
ui_pods
internal_pods
end
target 'MomentsTests' do
core_pods
thirdparty_pods
test_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end