-
Notifications
You must be signed in to change notification settings - Fork 36
/
Podfile
60 lines (50 loc) · 1.38 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, '9.0'
use_frameworks!
abstract_target 'SwipeItCommon' do
pod 'ObjectMapper', :git => 'https://github.com/Hearst-DD/ObjectMapper'
pod 'RxSwift'
pod 'Moya/RxSwift'
pod 'Moya-ObjectMapper/RxSwift'
pod 'NSObject+Rx'
pod 'RxOptional'
pod 'Result'
pod 'Kanna'
target 'SwipeIt' do
pod 'RxCocoa'
pod 'Kingfisher'
pod 'SnapKit'
pod 'Device'
pod 'Fabric'
pod 'Crashlytics'
pod 'KeychainSwift', '~> 3.0'
pod 'RxDataSources'
pod 'DateTools'
pod 'RxAlamofire'
pod 'Cell+Rx'
pod 'AsyncSwift'
pod 'SwiftGen'
pod 'MarkdownKit'
pod 'TTTAttributedLabel', :git => 'https://github.com/ivanbruel/TTTAttributedLabel'
pod 'RxTimer'
pod 'RxResult'
pod 'RxColor'
pod 'ZLSwipeableViewSwift', :git => 'https://github.com/zhxnlai/ZLSwipeableViewSwift'
pod 'Localizable'
pod 'TextStyle/RxSwift'
end
target 'SwipeItTests' do
pod 'Quick'
pod 'Nimble'
end
end
# Adding Build Time Analyzer compatibility
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
other_swift_flags = config.build_settings['OTHER_SWIFT_FLAGS'] || ['$(inherited)']
other_swift_flags << '-Xfrontend'
other_swift_flags << '-debug-time-function-bodies'
config.build_settings['OTHER_SWIFT_FLAGS'] = other_swift_flags
end
end
end