mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 15:48:05 +00:00
Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com> Co-authored-by: sarendsen <coding-mosses0z@icloud.com> Co-authored-by: Lance Chant <13349722+lancechant@users.noreply.github.com> Co-authored-by: Gauvain <68083474+Gauvino@users.noreply.github.com>
22 lines
653 B
Ruby
22 lines
653 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'BackgroundDownloader'
|
|
s.version = '1.0.0'
|
|
s.summary = 'Background file downloader for iOS'
|
|
s.description = 'Native iOS module for downloading large files in the background using NSURLSession'
|
|
s.author = ''
|
|
s.homepage = 'https://docs.expo.dev/modules/'
|
|
s.platforms = { :ios => '15.6', :tvos => '15.0' }
|
|
s.source = { git: '' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES',
|
|
'SWIFT_COMPILATION_MODE' => 'wholemodule'
|
|
}
|
|
|
|
s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}"
|
|
end
|
|
|