forked from kingslay/KSPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
32 lines (30 loc) · 865 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
use_frameworks! :linkage => :static
workspace 'Demo.xcworkspace'
install! 'cocoapods', :generate_multiple_pod_projects => true
def common
pod 'KSPlayer', :path => '../', :testspecs => ['Tests']
# pod 'OpenSSL', :path => '../../FFmpegKit'
# pod 'FFmpeg', :path => '../../FFmpegKit'
pod 'FFmpeg',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
pod 'OpenSSL',:git => 'https://github.com/kingslay/FFmpegKit.git', :branch => 'main'
pod 'SwiftLint'
end
target 'demo-iOS' do
project 'demo-iOS/demo-iOS.xcodeproj'
platform :ios, 13.0
common
end
target 'demo-macOS' do
project 'demo-macOS/demo-macOS.xcodeproj'
platform :osx, 10.15
common
end
target 'demo-tvOS' do
project 'demo-tvOS/demo-tvOS.xcodeproj'
platform :tvos, 13.0
common
end
#target 'iOS' do
# project 'SwiftUI/SwiftUI.xcodeproj'
# platform :ios, 15.0
#end