Files
PlayerKit/PlayerKit.podspec
T
Rogerio de Paula Assis bfba214af1 Updates sample project deployment target to iOS 10.3 (#83)
* Updates PlayerKit podspec (#80)

* Updates example project deploy target to 10.3
2019-08-01 09:29:40 -04:00

23 lines
695 B
Ruby

Pod::Spec.new do |s|
s.name = 'PlayerKit'
s.version = '3.0.0'
s.summary = 'A modular video player system.'
s.description = <<-DESC
PlayerKit is a modular video player system for iOS and tvOS.
DESC
s.homepage = 'https://github.com/vimeo/PlayerKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'code' => 'gavin@vimeo.com' }
s.source = { :git => 'https://github.com/vimeo/PlayerKit.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.3'
s.tvos.deployment_target = '10.0'
s.swift_version = "5.0"
s.source_files = 'PlayerKit/Classes/**/*'
end