-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreact-ios.podspec
55 lines (54 loc) · 1.89 KB
/
react-ios.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# Be sure to run `pod lib lint react-ios.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'react-ios'
s.version = '0.67.4.5'
s.summary = 'An runtime base on react-native.'
s.description =
<<-DESC
'Introduce this library for your App, development by react-native code.'
DESC
s.homepage = 'https://github.com/beatjs/react-ios'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Liam Xu' => '[email protected]' }
s.source = { :git => 'https://github.com/beatjs/react-ios.git', :tag => s.version.to_s }
s.platforms = { :ios => '11.0'}
s.module_name = 'ReactNative'
s.library = 'stdc++'
s.framework =
'JavaScriptCore'
s.ios.deployment_target = '11.0'
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES'
}
s.vendored_frameworks =
'Framework/CoreModules.xcframework',
'Framework/cxxreact.xcframework',
'Framework/DoubleConversion.xcframework',
'Framework/FBReactNativeSpec.xcframework',
'Framework/folly.xcframework',
'Framework/glog.xcframework',
'Framework/jsi.xcframework',
'Framework/jsinspector.xcframework',
'Framework/jsireact.xcframework',
'Framework/logger.xcframework',
'Framework/RCTAnimation.xcframework',
'Framework/RCTBlob.xcframework',
'Framework/RCTImage.xcframework',
'Framework/RCTLinking.xcframework',
'Framework/RCTNetwork.xcframework',
'Framework/RCTSettings.xcframework',
'Framework/RCTText.xcframework',
'Framework/RCTTypeSafety.xcframework',
'Framework/RCTVibration.xcframework',
'Framework/React.xcframework',
'Framework/ReactCommon.xcframework',
'Framework/reactperflogger.xcframework',
'Framework/yoga.xcframework'
s.dependency 'fmt', '~> 6.2.1'
end