b303f991ce
* [tvOS] Update podspec * [tvOS] Add tvOS target * Update README.md * [docs] Folder that contains pictures and content for documentation * tvOS Readme * [JPEG] Update image to JPEG
24 lines
671 B
Ruby
24 lines
671 B
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 = "A <Video /> element for react-native"
|
|
s.author = "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)"
|
|
|
|
s.homepage = "https://github.com/brentvatne/react-native-video"
|
|
|
|
s.license = "MIT"
|
|
|
|
s.ios.deployment_target = "7.0"
|
|
s.tvos.deployment_target = "9.0"
|
|
|
|
s.source = { :git => "https://github.com/brentvatne/react-native-video.git", :tag => "#{s.version}" }
|
|
|
|
s.source_files = "ios/*.{h,m}"
|
|
|
|
s.dependency "React"
|
|
end
|