omnipay-reactnative-sdk 1.2.3-beta.3 → 1.2.3-beta.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -17,24 +17,19 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.source = { :git => "https://github.com/engrtitus/omnipay-reactnative-sdk.git", :tag => "#{s.version}" }
|
|
18
18
|
|
|
19
19
|
s.source_files = "ios/**/*.{h,c,cc,cpp,m,mm,swift}"
|
|
20
|
+
s.public_header_files = "ios/*.h"
|
|
20
21
|
s.requires_arc = true
|
|
21
22
|
|
|
22
|
-
#
|
|
23
|
+
# Use static framework to resolve Swift modular headers issue
|
|
24
|
+
s.static_framework = true
|
|
25
|
+
|
|
26
|
+
# Essential dependencies only
|
|
23
27
|
s.dependency "React-Core"
|
|
24
28
|
s.dependency "VisionCamera"
|
|
25
29
|
|
|
26
30
|
# iOS Vision Framework for face detection
|
|
27
31
|
s.framework = "Vision"
|
|
28
32
|
|
|
29
|
-
# Install all React Native dependencies listed in dependencies and peerDependencies:
|
|
30
|
-
# See https://github.com/react-native-community/cli/blob/master/docs/dependencies.md#linking-dependencies-with-podspec
|
|
31
|
-
|
|
32
|
-
s.dependency "React"
|
|
33
|
-
s.dependency "React-RCTText"
|
|
34
|
-
s.dependency "React-RCTImage"
|
|
35
|
-
s.dependency "React-RCTNetwork"
|
|
36
|
-
# React-RCTWebSocket was removed in newer React Native versions
|
|
37
|
-
|
|
38
33
|
# New Architecture support
|
|
39
34
|
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|
|
40
35
|
s.compiler_flags = "-DRCT_NEW_ARCH_ENABLED=1"
|