-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathPodfile
117 lines (95 loc) · 3.13 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
source 'https://github.com/CocoaPods/Specs.git'
# source 'https://git.coding.net/hging/Specs.git'
platform :ios, '10.0'
# swift50里面的库已经支持swift5了 其他暂时先用4.1版本
#swift50 = ['BSImagePicker','Charts','Eureka', 'GradientCircularProgress', 'HandyJSON', 'SwiftyTimer', 'ReactiveSwift', 'ReactiveCocoa']
#
#post_install do |installer|
# installer.pods_project.targets.each do |target|
# swift_version = '4.1'
# if swift50.include?(target.name)
# print "set pod #{target.name} swift version to 5.0\n"
# swift_version = '5.0'
# end
# target.build_configurations.each do |config|
# config.build_settings['SWIFT_VERSION'] = swift_version
# config.build_settings['ENABLE_BITCODE'] = 'NO'
# end
# end
#end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
# config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end
target 'O2Platform' do
use_frameworks!
# Pods for O2OA
pod 'FMDB', '~> 2.6.2'
# 日志框架
pod 'CocoaLumberjack/Swift', '~> 3.5'
# 国人写的 HUD https://github.com/Harley-xk/Chrysan
pod 'Chrysan'
# Promise
pod 'PromisesSwift', '~> 1.2'
# 下拉刷新
pod 'MJRefresh'
# 键盘管理
pod 'IQKeyboardManagerSwift', '~> 6.5.0'
#网络请求
pod 'Alamofire', '~> 5.0'
# pod 'AlamofireImage', '~> 3.3'
pod 'AlamofireNetworkActivityIndicator', '~> 3.0'
# pod 'AlamofireObjectMapper', '~> 6.2.0'
pod 'AlamofireObjectMapper', :path => './AlamofireObjectMapper'
pod 'Moya', '~> 14.0'
pod 'Moya/RxSwift', '~> 14.0'
# UserDefaults加强
pod 'SwiftyUserDefaults', '~>3.0'
# json
pod 'HandyJSON', '~> 5.0.2-beta'
# pod 'SwiftyJSON', '~>3.1'
# reactive
pod 'ReactiveSwift', '~> 6.1'
pod 'ReactiveCocoa', '~> 10.1'
# Bugly 异常上报管理
pod 'Bugly'
pod 'SDWebImage', '~>4.0'
pod 'BSImagePicker', '~> 3.1.0'
pod 'Eureka', '~> 5.3.0'
# Eureka的一个自定义View的Row
pod 'ViewRow'
pod 'SwiftyTimer'
pod 'Charts'
pod 'ImageSlideshow', '~> 1.9'
pod 'ImageSlideshow/Alamofire'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'SnapKit', '~> 4.0'
pod 'SwiftValidator', :git => 'https://github.com/jpotts18/SwiftValidator.git', :branch => 'master'
# pod 'YHPopupView'
# pod 'YHPhotoKit'
pod 'RxCocoa', '~> 5.1.1'
#表格数据源为空时显示
pod 'EmptyDataSet-Swift', '~> 5.0.0'
#segmentedControl
pod 'BetterSegmentedControl', '~> 1.2'
pod 'FSCalendar'
# pod 'JZCalendarWeekView', '~> 0.4'
# 日历控件
pod 'JTCalendar', '2.2.3'
#百度地图SDK
pod 'BaiduMapKit'
#百度定位
pod 'BMKLocationKit'
# 极光
pod 'JCore', '2.1.2'
pod 'JPush', '3.2.4'
pod 'JMessage'
# websocket
pod 'Starscream', '~> 4.0.3'
# rsa 加密库 https://github.com/TakeScoop/SwiftyRSA
pod 'SwiftyRSA'
end