forked from seasonZhu/RxStudy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
62 lines (47 loc) · 1.43 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
# Uncomment the next line to define a global platform for your project
platform :ios, '12.1'
target 'RxStudy' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Rx Core
pod 'RxSwift'
pod 'RxCocoa'
# Networking
pod 'Moya/RxSwift'
# AlamofireNetworkActivityLogger集成
pod 'AlamofireNetworkActivityLogger'
# Rx Extensions
pod 'RxDataSources'
pod 'RxSwiftExt' #暂时没有使用,更多的是对序列的运算符优化
pod 'RxViewController' # 暂时没有使用
pod 'RxGesture' # 暂时没有使用
pod 'RxOptional' # 暂时没有使用
pod 'RxTheme' # 暂时没有使用,可以做主题优化,但是现在基本上适配黑暗模式即可
pod 'RxBlocking' # 暂时没有使用
pod 'NSObject+Rx'
# Image
pod 'Kingfisher'
# Date
pod 'SwiftDate' # 暂时没有使用
# Tools
pod 'R.swift'
# Keychain
pod 'KeychainAccess' # 暂时没有使用
# UI'
pod 'DZNEmptyDataSet'
pod 'AcknowList'
pod 'MBProgressHUD' # 被SVProgressHUD替代了
pod 'MJRefresh'
pod 'FSPagerView'
pod 'JXSegmentedView'
pod 'MarqueeLabel'
pod 'SVProgressHUD'
# Keyboard
pod 'IQKeyboardManagerSwift'
# Auto Layout
pod 'SnapKit'
# 打印日志
pod "SwiftPrettyPrint", "~> 1.2.0", :configuration => "Debug" # enabled on `Debug` build only
# SFSymbols的安全引用
pod 'SFSafeSymbols', '~> 2.1.3' #暂时没有使用
end