-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenRUMReactNativePlugin.podspec
40 lines (29 loc) · 2.51 KB
/
OpenRUMReactNativePlugin.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
40
require 'json'
package = JSON.parse(File.read(File.join(__dir__, './', 'package.json')))
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "OpenRUMReactNativePlugin"
s.version = package['version']
s.summary = package['description']
s.homepage = package['homepage']
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = package['license']
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = "OpenRUM"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "8.0"
s.ios.deployment_target = "8.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "./../node_modules/\@openrum/react-native-plugin", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "ios/*.{h,m}"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.frameworks = "UIKit", "Foundation"
s.libraries = "resolv", "c++"
# s.ios.vendored_frameworks = "ios/lib/OpenRUM.xcframework", "ios/lib/OpenBusiness.xcframework", "ios/lib/OpenCore.xcframework"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
s.dependency "React"
s.dependency "AlibabaCloudRUM", "0.3.1"
end