-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPodfile
executable file
·58 lines (43 loc) · 1.26 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
source '[email protected]/CocoaPods/Specs.git'
use_frameworks!
target 'SwiftDemo' do
# Weex 相关
pod 'WeexSDK', '0.12.0’
pod 'WXDevtool', '0.8.2'
pod 'SDWebImage', '3.7.5'
pod 'SocketRocket', '0.4.2'
# 基于Alamofire的网络抽象层
pod 'Moya', '8.0.5’
pod 'Moya/RxSwift'
pod 'Alamofire', '4.5.0’
# JSON 解析
# pod 'SwiftyJSON', '0.12.0’
pod 'ObjectMapper', '2.2.7’
# Rx 编程
pod 'RxCocoa', '3.5.0’
# 页面布局
pod 'SnapKit', '3.2.0’
#pod 'PureLayout', '~> 3.0.1'
# 下载图片
pod 'Kingfisher', '3.10.2’
# Swift版本的 Promise
pod 'PromiseKit', '4.2.2’
# 空状态模式
pod 'DZNEmptyDataSet', '1.8.1’
# 模仿 Twitter 的图片查看器
pod 'ImageViewer’, '4.1.0’
# a clean and easy-to-use HUD meant to display the progress of an ongoing task
pod 'SVProgressHUD', '2.1.2’
pod 'PNChart', '0.8.9’
target 'SwiftDemoUITests' do
inherit! :search_paths
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '3.0'
end
end
end