-
Notifications
You must be signed in to change notification settings - Fork 4
/
RNAmazonPublisherServices.podspec
44 lines (33 loc) · 1.35 KB
/
RNAmazonPublisherServices.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
require "json"
new_arch_enabled = ENV['RCT_NEW_ARCH_ENABLED']
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNAmazonPublisherServices"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]
s.source = { :git => "https://github.com/wjaykim/react-native-aps.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,mm,swift}"
if new_arch_enabled
s.platforms = { :ios => "11.0" }
# folly_version must match the version used in React Native
# See folly_version in react-native/React/FBReactNativeSpec/FBReactNativeSpec.podspec
folly_version = '2021.06.28.00-v2'
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
s.compiler_flags = folly_compiler_flags
s.pod_target_xcconfig = {
"HEADER_SEARCH_PATHS" => "\"$(PODS_ROOT)/boost\""
}
s.dependency "React-Codegen"
s.dependency "RCT-Folly", folly_version
s.dependency "RCTRequired"
s.dependency "RCTTypeSafety"
s.dependency "ReactCommon/turbomodule/core"
else
s.platforms = { :ios => "10.0" }
end
s.dependency "React-Core"
s.dependency "AmazonPublisherServicesSDK"
end