VIMediaCache.podspec 589 B

1234567891011121314
  1. Pod::Spec.new do |s|
  2. s.name = 'VIMediaCache'
  3. s.version = '0.1.0'
  4. s.license = 'MIT'
  5. s.summary = 'VIMediaCache is a tool to cache media file while play media using AVPlayer'
  6. s.homepage = 'https://github.com/vitoziv/VIMediaCache'
  7. s.author = { 'Vito' => 'vvitozhang@gmail.com' }
  8. s.source = { :git => 'http://svn.ouj.com:3000/duowan_iOS/VideoCache.git', :tag => s.version.to_s }
  9. s.platform = :ios, '9.0'
  10. s.source_files = 'VIMediaCache/*.{h,m}', 'VIMediaCache/**/*.{h,m}'
  11. s.frameworks = 'MobileCoreServices', 'AVFoundation'
  12. s.requires_arc = true
  13. end