forked from CommercialTribe/react-native-opentok
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-opentok.podspec
More file actions
31 lines (23 loc) · 907 Bytes
/
react-native-opentok.podspec
File metadata and controls
31 lines (23 loc) · 907 Bytes
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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-opentok"
s.version = package["version"]
s.summary = "An OpenTok SDK for react-native"
s.authors = {
'Mike Grabowski' => 'mike@callstack.io',
'Mike Chudziak' => 'mike.chudziak@callstack.io',
}
s.homepage = "https://github.com/callstack/react-native-video"
s.license = "MIT"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/callstack/react-native-opentok.git", :tag => "#{s.version}" }
s.source_files = "*.{h,m}"
s.pod_target_xcconfig = {
"MACH_O_TYPE" => "staticlib",
"FRAMEWORK_SEARCH_PATHS" => "${PODS_ROOT}/OpenTok"
}
s.dependency "React"
# This must be included in the root Podfile rather than here due to issues with use_frameworks.
# s.dependency "OpenTok"
end