forked from quipper/react-native-brightcove-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-native-brightcove-player.podspec
24 lines (21 loc) · 1.09 KB
/
react-native-brightcove-player.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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "react-native-brightcove-player"
s.version = package["version"]
s.description = package["description"]
s.summary = package["description"]
s.homepage = "https://github.com/BrightcovePS/react-native-brightcove-player#readme"
s.license = package['license']
s.authors = "Brightcove Global Services"
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/BrightcovePS/react-native-brightcove-player#readme" }
s.source_files = 'ios/**/*.{h,m,swift, plist}'
s.resources = 'iOS/**/*.{png,jpeg,jpg,storyboard,xib,xcassets,json,otf}'
s.swift_version = '4.2'
s.dependency 'React'
s.dependency 'Brightcove-Player-GoogleCast'
s.static_framework = false
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end