-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathDownloadToGo.podspec
30 lines (24 loc) · 1.1 KB
/
DownloadToGo.podspec
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
suffix = '.0000' # Dev mode
# suffix = '' # Release
Pod::Spec.new do |s|
s.name = 'DownloadToGo'
s.version = '3.20.0' + suffix
s.summary = 'DownloadToGo -- download manager for HLS'
s.homepage = 'https://github.com/kaltura/playkit-ios-dtg'
s.license = { :type => 'AGPLv3', :file => 'LICENSE' }
s.author = { 'Kaltura' => '[email protected]' }
s.source = { :git => 'https://github.com/kaltura/playkit-ios-dtg.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.ios.deployment_target = '15.0'
s.source_files = 'Sources/**/*'
s.dependency 'M3U8Kit', '1.1.0'
s.dependency 'kGCDWebServer', '~> 4.0.0'
s.dependency 'RealmSwift', '~> 10.50.0'
s.dependency 'Realm', '~> 10.50.0'
s.dependency 'XCGLogger', '~> 7.1.5'
s.dependency 'PlayKitUtils', '~> 0.7'
s.xcconfig = {
### The following is required for Xcode 12 (https://stackoverflow.com/questions/63607158/xcode-12-building-for-ios-simulator-but-linking-in-object-file-built-for-ios)
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
end