-
Notifications
You must be signed in to change notification settings - Fork 17
/
Podfile
30 lines (23 loc) · 843 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0'
inhibit_all_warnings!
target 'VideoCat' do
use_frameworks!
pod 'MBProgressHUD', '~> 1.0.0'
pod 'RxSwift', '~> 4.0.0'
pod 'RxCocoa', '~> 4.0.0'
pod 'TinyConstraints', '~> 3.0.1'
# pod 'VFCabbage', :path => '../Cabbage'
# pod 'VIPlayer', :path => '../VIPlayer'
pod 'VIPlayer', :git => 'https://github.com/VideoFlint/VIPlayer.git', :commit => '7b49099'
pod 'VFCabbage', :git => 'https://github.com/VideoFlint/Cabbage.git', :commit => 'aa95b17'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'VFCabbage'
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.2'
end
end
end
end