forked from jwplayer/JWPlayerKit-cocoapod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJWPlayerKit.podspec
35 lines (25 loc) · 1.37 KB
/
JWPlayerKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Pod::Spec.new do |s|
s.name = "JWPlayerKit"
s.version = "4.12.0"
s.summary = "JWPlayerKit for iOS. SDKs page: https://www.jwplayer.com/products/mobile-sdk/"
s.homepage = "https://www.jwplayer.com/mobile-sdk/"
s.license = { :type => "Commercial", :file => "LICENSE.md" }
s.authors = { "JW Player" => "[email protected]" }
s.platform = :ios, "12.0"
s.documentation_url = "https://developer.jwplayer.com/sdk/ios/docs/developer-guide/"
s.source = { :git => "https://github.com/jwplayer/JWPlayerKit-cocoapod.git", :tag => s.version.to_s }
s.ios.vendored_frameworks = "JWPlayerKit.xcframework"
s.social_media_url = 'https://www.facebook.com/jwplayer/'
s.social_media_url = 'https://twitter.com/jwplayer'
s.social_media_url = 'https://twitter.com/jwpsupport'
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.requires_arc = true
# From https://www.jwplayer.com/products/mobile-sdk/
s.description = <<-DESC
The SDK includes native software classes and methods that enable developers
to build HLS video playback, VAST advertising, player UI customization and
other features directly into any mobile application to expand your reach to
the billions of mobile app users worldwide.
DESC
end