-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
99 lines (79 loc) · 2.07 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
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
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'
target 'SmartHomeHD' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# 忽略第三方的警告
inhibit_all_warnings!
# Rx
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
pod 'RxDataSources', '~> 3.0'
pod 'NSObject+Rx'
pod 'RxGesture'
pod 'Alamofire', '~> 4.7'
pod 'Moya/RxSwift', '~> 11.0'
pod 'Moya-ObjectMapper/RxSwift'
pod 'ReactorKit'
pod 'RxSwiftExt'
pod 'RxOptional'
pod 'RxViewController'
pod 'SectionReactor'
pod 'Then'
pod 'Dollar'
pod 'RxKingfisher'
pod 'Kingfisher'
# UI
# 布局
pod 'TYCyclePagerView'
pod 'SnapKit'
# 简化 Cell 注册
pod 'ReusableKit'
# pod 'ReusableKit/RxSwift'
#pod 'Segmentio', '~> 3.3'
# 分段选择器
pod 'HMSegmentedControl'
# 一款按钮的扩展控件,改变图片和titile的位置
pod 'UIButton-SSEdgeInsets', '~> 0.1.1'
# UserDefaults
pod 'SwiftyUserDefaults', '~> 4.0'
# 提示框
pod 'Toaster'
pod 'YPImagePicker'
pod 'MMPhotoPicker'
# Socket.IO
# pod 'Socket.IO-Client-Swift', '~> 15.1.0'
# WebSocket
#pod 'Starscream', '~> 3.0.6'
# 自定义 Switch
pod 'RoundedSwitch'
# 日期扩展
pod 'SwiftDate', '~> 5.0'
# 二维码识别,生成工具, 原作者没更新了,
pod 'swiftScan', :git => "https://github.com/MxABC/swiftScan.git", :commit =>"b6c5b1c"
# log 工具
pod 'CocoaLumberjack/Swift'
# File 处理
pod 'FilesProvider'
# 第三方集成
# 荧石云摄像头SDK
pod 'EZOpenSDK'
# activityView
pod 'NVActivityIndicatorView/AppExtension'
# 刷新, 空页面, 全屏 等工具
pod 'LXFProtocolTool'
# 弹窗 ALterView
pod 'SCLAlertView'
# 视图圆角, 阴影,渐变色等处理
pod 'HJViewStyle'
pod 'EFColorPicker'
# Pods for SmartHomeHD
target 'SmartHomeHDTests' do
inherit! :search_paths
# Pods for testing
end
target 'SmartHomeHDUITests' do
inherit! :search_paths
# Pods for testing
end
end