-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
54 lines (39 loc) · 960 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
platform :ios, '9.0'
## ignore warning
inhibit_all_warnings!
target 'XPYReader' do
# 网络请求工具
pod 'AFNetworking'
# AutoLayout
pod 'Masonry'
# 加载提示框
pod 'MBProgressHUD'
# 数据模型
pod 'YYModel'
# 数据库相关
pod 'WCDB'
# KVO
pod 'KVOController'
# 网络图片展示
pod 'SDWebImage', '~> 5.6.0'
# 全屏侧滑手势
pod 'FDFullscreenPopGesture'
# AOP
pod 'Aspects'
# XPYKit
pod 'XPYKit', :git => 'https://github.com/xiangxiaopenyou/XPYKit.git'
# 环信MQTT
pod 'MQTTClient'
#tagView
pod "TTGTagCollectionView"
# 消除版本警告
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 9.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end
end
end