react-native-video/react-native-video.podspec

36 lines
1.0 KiB
Plaintext
Raw Normal View History

require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
2016-02-17 10:51:34 -07:00
Pod::Spec.new do |s|
2018-07-18 18:06:09 -06:00
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/brentvatne/react-native-video'
s.source = { :git => "https://github.com/brentvatne/react-native-video.git", :tag => "#{s.version}" }
2018-03-04 15:40:59 -07:00
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
2016-02-17 10:51:34 -07:00
2018-07-18 18:06:09 -06:00
s.subspec "Video" do |ss|
ss.source_files = "ios/Video/*.{h,m}"
s.static_framework = true
end
s.subspec "VideoCaching" do |ss|
ss.dependency "react-native-video/Video"
ss.dependency "SPTPersistentCache", "~> 1.1.0"
ss.dependency "DVAssetLoaderDelegate", "~> 0.3.1"
2016-02-17 10:51:34 -07:00
2018-07-18 18:06:09 -06:00
ss.source_files = "ios/VideoCaching/**/*.{h,m}"
s.static_framework = true
end
2016-02-17 10:51:34 -07:00
s.dependency "React"
2018-07-18 18:06:09 -06:00
s.default_subspec = "Video"
2016-02-17 10:51:34 -07:00
end