e27baeb065
Adds offline decryption key and uses it to decrypt content during offline playback Jira: VEX-5938 https://jira.tenkasu.net/browse/VEX-5938 - Update to accept scheme for key required to play offline playback - Uses provided scheme to intercept call from player and return the key - Fixes player item observer removal pattern ### Reviews - Major reviewer (domain expert): @armadilio3
41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
require "json"
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'react-native-video'
|
|
s.version = package['version']
|
|
s.summary = package['description']
|
|
s.description = package['description']
|
|
s.license = package['license']
|
|
s.author = package['author']
|
|
s.homepage = 'https://github.com/react-native-community/react-native-video'
|
|
s.source = { :git => "https://github.com/react-native-community/react-native-video.git", :tag => "#{s.version}" }
|
|
|
|
s.ios.deployment_target = "9.0"
|
|
s.tvos.deployment_target = "9.0"
|
|
|
|
s.subspec "Video" do |ss|
|
|
ss.source_files = "ios/Video/**/*.{h,m,swift}"
|
|
ss.dependency "PromisesSwift"
|
|
end
|
|
|
|
s.subspec "VideoCaching" do |ss|
|
|
ss.dependency "react-native-video/Video"
|
|
ss.dependency "SPTPersistentCache", "~> 1.1.0"
|
|
ss.dependency "DVAssetLoaderDelegate", "~> 0.3.1"
|
|
|
|
ss.source_files = "ios/VideoCaching/**/*.{h,m,swift}"
|
|
end
|
|
|
|
s.dependency "React-Core"
|
|
|
|
s.default_subspec = "Video"
|
|
|
|
s.static_framework = true
|
|
|
|
s.xcconfig = {
|
|
'OTHER_LDFLAGS': '-ObjC',
|
|
}
|
|
end
|