forked from TheWidlarzGroup/react-native-video
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-native-video.podspec
39 lines (30 loc) · 1.1 KB
/
react-native-video.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
36
37
38
39
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = 'react-native-video'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.author = package['author']
s.homepage = 'https://github.com/react-native-community/react-native-video'
s.source = { :git => "https://github.com/react-native-community/react-native-video.git", :tag => "#{s.version}" }
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.subspec "Video" do |ss|
ss.source_files = "ios/Video/*.{h,m}"
s.static_framework = true
end
s.subspec "VideoCaching" do |ss|
ss.dependency "react-native-video/Video"
ss.dependency "SPTPersistentCache", "~> 1.1.0"
ss.dependency "DVAssetLoaderDelegate", "~> 0.3.1"
ss.source_files = "ios/VideoCaching/**/*.{h,m}"
s.static_framework = true
end
s.dependency "React-Core"
s.default_subspec = "Video"
s.xcconfig = {
'OTHER_LDFLAGS': '-ObjC',
}
end