-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathYoutubePlayerView.podspec
20 lines (16 loc) · 996 Bytes
/
YoutubePlayerView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'YoutubePlayerView'
s.version = '1.2.2'
s.summary = 'Helper library for iOS developers that want to embed YouTube videos in their iOS apps with the iframe player API.'
s.description = <<-DESC
Helper library for iOS developers that want to play YouTube videos in their iOS apps with the iframe player API.
This library allows iOS developers to quickly embed YouTube videos within their applications via a custom WKWebView subclass, YoutubePlayerView.
DESC
s.homepage = 'https://github.com/mukeshydv/YoutubePlayerView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Mukesh Yadav' => 'mails4ymukesh@gmail.com' }
s.source = { :git => 'https://github.com/mukeshydv/YoutubePlayerView.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.swift_version = '5.0'
s.source_files = 'Sources/YoutubePlayerView/*.swift'
end