-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
41 lines (39 loc) · 1.22 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
# Uncomment the next line to define a global platform for your project
platform :ios, '14.0'
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
target 'bili' do
pod 'RxSwift'
pod 'RxCocoa' #cocoa库加rx属性
pod 'RxDataSources' #tableview、collectionview 使用
pod 'NSObject+Rx' #rx.disposebag
pod 'R.swift'
pod 'MJRefresh'
pod 'HMSegmentedControl'
pod 'MBProgressHUD'
pod 'EmptyDataSet-Swift'
pod 'DanmakuKit'
pod 'SwiftProtobuf'
pod 'ZFPlayer'
pod 'ZFPlayer/ControlView'
pod 'ZFPlayer/AVPlayer'
pod "DynamicBlurView", '~> 5.0.0'
pod 'ReachabilitySwift', '~> 5.2.1'
pod 'SDWebImage', '~> 5.0'
pod 'SwiftyJSON', '~> 5.0.2'
pod 'SwiftDate', '~> 7.0.0'
pod 'SnapKit', '~> 5.7.1'
pod 'HandyJSON', '~> 5.0.2'
pod 'Alamofire', '~> 5.7.1'
pod 'Kingfisher', '~> 6.3.1'
pod 'LookinServer', :subspecs => ['Swift'], :configurations => ['Debug']
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end