-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
executable file
·63 lines (53 loc) · 1.55 KB
/
Podfile
File metadata and controls
executable file
·63 lines (53 loc) · 1.55 KB
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
# Uncomment the next line to define a global platform for your project
#platform :ios, '12.0'
# For CocoaPods 1.8.0 或以上版本,使用cdn来避免clone master,加快pod update的速度。
source 'https://gitee.com/mirrors/CocoaPods-Specs.git'
#source 'https://cdn.cocoapods.org/'
#source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
target 'ToolGather' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'Kingfisher'
pod 'Alamofire'
pod 'SnapKit', '~> 5.0.0'
pod 'SwiftyJSON'
pod 'HandyJSON'
pod 'Moya'
#pod 'BayMaxProtector'
#pod 'dsBridge'
# WebRTC
#pod 'CocoaAsyncSocket'
#pod 'GoogleWebRTC'
# pod 'GoogleWebRTC'
#pod "ESPullToRefresh"
# crash 规避
pod 'AvoidCrash', '2.5.2'
# Persistence
#pod 'WCDB.swift', '1.0.8.2'
pod 'SwiftyUserDefaults', '4.0.0'
# Rx
#pod 'NSObject+Rx', '4.4.1'
#pod 'RxCocoa', '~> 4.4.2'
#pod 'RxDataSources', '~> 3.1.0'
#pod 'Moya/RxSwift', '~> 12.0.1'
#layout
pod 'DeviceKit'
pod 'NVActivityIndicatorView'
pod 'FSPagerView'
pod 'SideMenu'
pod 'TOCropViewController'
pod 'NotificationBannerSwift', '~> 3.0.0'
pod 'AnimatedCollectionViewLayout'
pod "ESTabBarController-swift"
pod 'FoldingCell'
pod 'amrnb'
# pod 'HXPhotoPicker', '~> 4.0.0'
end
post_install do|installer|
#最小版本支持11.0
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end