-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExpoKit.podspec
49 lines (43 loc) · 1.74 KB
/
ExpoKit.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
# generated from template-files/ios/ExpoKit.podspec
Pod::Spec.new do |s|
s.name = "ExpoKit"
s.version = "44.0.0"
s.summary = 'ExpoKit'
s.description = 'ExpoKit allows native projects to integrate with the Expo SDK.'
s.homepage = 'http://docs.expo.io'
s.license = 'MIT'
s.author = "650 Industries, Inc."
s.requires_arc = true
s.platform = :ios, "12.0"
s.default_subspec = "Core"
s.source = { :git => "http://github.com/expo/expo.git" }
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'gnu++14',
'SYSTEM_HEADER_SEARCH_PATHS' => "\"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/Folly\" \"$(PODS_ROOT)/Headers/Private/React-Core\"",
'OTHER_CPLUSPLUSFLAGS' => [
"$(OTHER_CFLAGS)",
"-DFOLLY_NO_CONFIG",
"-DFOLLY_MOBILE=1",
"-DFOLLY_USE_LIBCPP=1"
]
}
s.subspec "Core" do |ss|
ss.source_files = "Exponent/**/*.{h,m,mm,cpp}", "../template-files/keys.json"
ss.preserve_paths = "Exponent/**/*.{h,m,mm,cpp}"
ss.exclude_files = "Exponent/Supporting/**", "Exponent/Versioned/Optional/**/*.{h,m}"
ss.dependency 'Amplitude', '~> 6.0.0'
ss.dependency 'CocoaLumberjack', '~> 3.5.3'
ss.dependency 'GoogleMaps', '~> 3.3'
ss.dependency 'Google-Maps-iOS-Utils', '~> 2.1.0'
ss.dependency 'lottie-ios', '~> 3.2.3'
ss.dependency 'JKBigInteger', '0.0.6'
ss.dependency 'MBProgressHUD', '~> 1.2.0'
ss.dependency 'React-Core' # explicit dependency required for CocoaPods >= 1.5.0
ss.dependency 'ReactCommon' # needed for react-native-reanimated, see https://github.com/expo/expo/pull/11096#how
# Universal modules required by ExpoKit so the code compiles
ss.dependency 'ExpoModulesCore'
end
s.subspec "FaceDetector" do |ss|
ss.dependency "EXFaceDetector"
end
end