-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
67 lines (50 loc) · 888 Bytes
/
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
platform :ios, '12.0'
use_frameworks!
inhibit_all_warnings!
def app_pods
# Architecture
pod 'ReactorKit', '2.0.1'
# Coordinator
# pod 'RxFlow', '2.4.0'
# Reactive
pod 'RxSwift', '5.0.0'
pod 'RxCocoa', '5.0.0'
pod 'RxDataSources', '4.0.1'
pod 'RxOptional', '4.0.0'
pod 'RxKeyboard'
# UI
pod 'SnapKit'
pod 'Toaster'
pod 'PanModal'
# Keychain
pod 'KeychainAccess'
# DB
pod 'RealmSwift'
# Logger
pod 'SwiftyBeaver'
# Network
pod 'Moya/RxSwift', '14.0.0-alpha.2'
pod 'Kingfisher', '~> 5.0'
# etc
pod 'Firebase/Core'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Analytics'
pod 'Firebase/Performance'
pod 'Fabric'
pod 'Crashlytics'
pod 'SwiftLint'
pod 'AcknowList'
pod 'Bagel'
pod 'Kanna'
end
target 'GitTime' do
app_pods
target 'GitTimeTests' do
inherit! :search_paths
# app_pods
end
target 'GitTimeUITests' do
inherit! :search_paths
# app_pods
end
end