judokit-react-native 4.1.3 → 4.2.0

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.
Files changed (101) hide show
  1. package/JudoKit-ReactNative.podspec +42 -0
  2. package/LICENSE +1 -2
  3. package/README.md +106 -119
  4. package/android/build.gradle +65 -202
  5. package/android/gradle.properties +6 -1
  6. package/android/src/main/AndroidManifest.xml +2 -2
  7. package/android/src/main/AndroidManifestNew.xml +2 -0
  8. package/android/src/main/java/com/judopay/judokit/reactnative/Extensions.kt +382 -0
  9. package/android/src/main/java/com/judopay/judokit/reactnative/Helpers.kt +653 -0
  10. package/android/src/main/java/com/judopay/judokit/reactnative/JudoActivityEventListener.kt +49 -0
  11. package/android/src/main/java/com/judopay/judokit/reactnative/JudoKitReactNativeModule.kt +238 -0
  12. package/android/src/main/java/com/judopay/judokit/reactnative/JudoKitReactNativePackage.kt +16 -0
  13. package/ios/{Classes/Extensions → Extensions}/NSDictionary+JudoConvert.h +1 -1
  14. package/ios/{Classes/Extensions → Extensions}/NSDictionary+JudoConvert.m +2 -2
  15. package/ios/{Classes/Extensions → Extensions}/NSException+JudoValidationExceptions.h +1 -1
  16. package/ios/{Classes/Extensions → Extensions}/NSException+JudoValidationExceptions.m +1 -1
  17. package/ios/{Classes/Extensions → Extensions}/UIColor+RNAdditions.h +1 -1
  18. package/ios/{Classes/Extensions → Extensions}/UIColor+RNAdditions.m +3 -3
  19. package/ios/{Classes/RNJudo.h → JudoKitReactNative.h} +12 -6
  20. package/ios/{Classes/RNJudo.m → JudoKitReactNative.mm} +83 -81
  21. package/ios/{Classes/RNTypes.h → RNTypes.h} +8 -2
  22. package/ios/{Classes/Wrappers → Wrappers}/RNApplePayWrappers.h +1 -1
  23. package/ios/{Classes/Wrappers → Wrappers}/RNApplePayWrappers.m +105 -4
  24. package/ios/{Classes/Wrappers → Wrappers}/RNWrappers.h +14 -14
  25. package/ios/{Classes/Wrappers → Wrappers}/RNWrappers.m +46 -25
  26. package/lib/commonjs/index.js +268 -0
  27. package/lib/commonjs/index.js.map +1 -0
  28. package/lib/commonjs/judo-kit/index.js +212 -0
  29. package/lib/commonjs/judo-kit/index.js.map +1 -0
  30. package/lib/commonjs/types/index.js +267 -0
  31. package/lib/commonjs/types/index.js.map +1 -0
  32. package/lib/commonjs/types/judo-apple-pay-configuration.js +49 -0
  33. package/lib/commonjs/types/judo-apple-pay-configuration.js.map +1 -0
  34. package/lib/commonjs/types/judo-configuration.js +71 -0
  35. package/lib/commonjs/types/judo-configuration.js.map +1 -0
  36. package/lib/commonjs/types/judo-google-pay-configuration.js +28 -0
  37. package/lib/commonjs/types/judo-google-pay-configuration.js.map +1 -0
  38. package/lib/module/index.js +6 -0
  39. package/lib/module/index.js.map +1 -0
  40. package/lib/module/judo-kit/index.js +205 -0
  41. package/lib/module/judo-kit/index.js.map +1 -0
  42. package/lib/module/types/index.js +8 -0
  43. package/lib/module/types/index.js.map +1 -0
  44. package/lib/module/types/judo-apple-pay-configuration.js +43 -0
  45. package/lib/module/types/judo-apple-pay-configuration.js.map +1 -0
  46. package/lib/module/types/judo-configuration.js +65 -0
  47. package/lib/module/types/judo-configuration.js.map +1 -0
  48. package/lib/module/types/judo-google-pay-configuration.js +22 -0
  49. package/lib/module/types/judo-google-pay-configuration.js.map +1 -0
  50. package/lib/typescript/src/index.d.ts +4 -0
  51. package/lib/typescript/src/index.d.ts.map +1 -0
  52. package/lib/typescript/src/judo-kit/index.d.ts +86 -0
  53. package/lib/typescript/src/judo-kit/index.d.ts.map +1 -0
  54. package/lib/typescript/src/types/index.d.ts +4 -0
  55. package/lib/typescript/src/types/index.d.ts.map +1 -0
  56. package/lib/typescript/src/types/judo-apple-pay-configuration.d.ts +75 -0
  57. package/lib/typescript/src/types/judo-apple-pay-configuration.d.ts.map +1 -0
  58. package/lib/typescript/src/types/judo-configuration.d.ts +236 -0
  59. package/lib/typescript/src/types/judo-configuration.d.ts.map +1 -0
  60. package/lib/typescript/src/types/judo-google-pay-configuration.d.ts +42 -0
  61. package/lib/typescript/src/types/judo-google-pay-configuration.d.ts.map +1 -0
  62. package/package.json +158 -79
  63. package/src/index.tsx +50 -0
  64. package/src/judo-kit/index.ts +262 -0
  65. package/src/types/index.ts +53 -0
  66. package/src/types/judo-apple-pay-configuration.ts +85 -0
  67. package/src/types/judo-configuration.ts +263 -0
  68. package/src/types/judo-google-pay-configuration.ts +47 -0
  69. package/JudoPay.tsx +0 -334
  70. package/RNJudopay.podspec +0 -24
  71. package/android/src/main/java/com/reactlibrary/Extensions.kt +0 -372
  72. package/android/src/main/java/com/reactlibrary/Helpers.kt +0 -606
  73. package/android/src/main/java/com/reactlibrary/JudoReactNativeActivityEventListener.kt +0 -48
  74. package/android/src/main/java/com/reactlibrary/JudoReactNativeModule.kt +0 -257
  75. package/android/src/main/java/com/reactlibrary/JudoReactNativePBBAManager.kt +0 -52
  76. package/android/src/main/java/com/reactlibrary/JudoReactNativePackage.kt +0 -14
  77. package/components/JudoPBBAButton.ts +0 -2
  78. package/ios/.xcode.env +0 -11
  79. package/ios/Classes/Views/RNPBBAButtonManager.m +0 -42
  80. package/ios/Classes/Wrappers/RNPBBAWrappers.h +0 -40
  81. package/ios/Classes/Wrappers/RNPBBAWrappers.m +0 -57
  82. package/ios/Podfile +0 -44
  83. package/ios/Podfile.lock +0 -572
  84. package/ios/RNJudo.xcodeproj/project.pbxproj +0 -703
  85. package/ios/RNJudo.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
  86. package/ios/RNJudo.xcodeproj/xcshareddata/xcschemes/RNJudo.xcscheme +0 -97
  87. package/ios/RNJudo.xcworkspace/contents.xcworkspacedata +0 -10
  88. package/ios/RNJudoTests/Info.plist +0 -22
  89. package/ios/RNJudoTests/MockConfiguration.json +0 -114
  90. package/ios/RNJudoTests/NSDictionaryConvertTests.m +0 -475
  91. package/ios/RNJudoTests/RNApplePayWrappersTests.m +0 -770
  92. package/ios/RNJudoTests/RNJudoTests.m +0 -37
  93. package/ios/RNJudoTests/RNMocks.h +0 -54
  94. package/ios/RNJudoTests/RNMocks.m +0 -55
  95. package/ios/RNJudoTests/RNPBBAWrappersTests.m +0 -121
  96. package/ios/RNJudoTests/RNThemeTests.m +0 -576
  97. package/ios/RNJudoTests/RNWrappersTests.m +0 -947
  98. package/types/JudoApplePayTypes.tsx +0 -59
  99. package/types/JudoGooglePayTypes.tsx +0 -47
  100. package/types/JudoPBBATypes.tsx +0 -7
  101. package/types/JudoTypes.tsx +0 -251
package/ios/Podfile.lock DELETED
@@ -1,572 +0,0 @@
1
- PODS:
2
- - boost (1.76.0)
3
- - CocoaAsyncSocket (7.6.5)
4
- - DeviceDNA (2.0.0):
5
- - OpenSSL-Universal (~> 1.1.180)
6
- - DoubleConversion (1.1.6)
7
- - FBLazyVector (0.69.7)
8
- - FBReactNativeSpec (0.69.7):
9
- - RCT-Folly (= 2021.06.28.00-v2)
10
- - RCTRequired (= 0.69.7)
11
- - RCTTypeSafety (= 0.69.7)
12
- - React-Core (= 0.69.7)
13
- - React-jsi (= 0.69.7)
14
- - ReactCommon/turbomodule/core (= 0.69.7)
15
- - Flipper (0.125.0):
16
- - Flipper-Folly (~> 2.6)
17
- - Flipper-RSocket (~> 1.4)
18
- - Flipper-Boost-iOSX (1.76.0.1.11)
19
- - Flipper-DoubleConversion (3.2.0.1)
20
- - Flipper-Fmt (7.1.7)
21
- - Flipper-Folly (2.6.10):
22
- - Flipper-Boost-iOSX
23
- - Flipper-DoubleConversion
24
- - Flipper-Fmt (= 7.1.7)
25
- - Flipper-Glog
26
- - libevent (~> 2.1.12)
27
- - OpenSSL-Universal (= 1.1.1100)
28
- - Flipper-Glog (0.5.0.5)
29
- - Flipper-PeerTalk (0.0.4)
30
- - Flipper-RSocket (1.4.3):
31
- - Flipper-Folly (~> 2.6)
32
- - FlipperKit (0.125.0):
33
- - FlipperKit/Core (= 0.125.0)
34
- - FlipperKit/Core (0.125.0):
35
- - Flipper (~> 0.125.0)
36
- - FlipperKit/CppBridge
37
- - FlipperKit/FBCxxFollyDynamicConvert
38
- - FlipperKit/FBDefines
39
- - FlipperKit/FKPortForwarding
40
- - SocketRocket (~> 0.6.0)
41
- - FlipperKit/CppBridge (0.125.0):
42
- - Flipper (~> 0.125.0)
43
- - FlipperKit/FBCxxFollyDynamicConvert (0.125.0):
44
- - Flipper-Folly (~> 2.6)
45
- - FlipperKit/FBDefines (0.125.0)
46
- - FlipperKit/FKPortForwarding (0.125.0):
47
- - CocoaAsyncSocket (~> 7.6)
48
- - Flipper-PeerTalk (~> 0.0.4)
49
- - FlipperKit/FlipperKitHighlightOverlay (0.125.0)
50
- - FlipperKit/FlipperKitLayoutHelpers (0.125.0):
51
- - FlipperKit/Core
52
- - FlipperKit/FlipperKitHighlightOverlay
53
- - FlipperKit/FlipperKitLayoutTextSearchable
54
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0):
55
- - FlipperKit/Core
56
- - FlipperKit/FlipperKitHighlightOverlay
57
- - FlipperKit/FlipperKitLayoutHelpers
58
- - YogaKit (~> 1.18)
59
- - FlipperKit/FlipperKitLayoutPlugin (0.125.0):
60
- - FlipperKit/Core
61
- - FlipperKit/FlipperKitHighlightOverlay
62
- - FlipperKit/FlipperKitLayoutHelpers
63
- - FlipperKit/FlipperKitLayoutIOSDescriptors
64
- - FlipperKit/FlipperKitLayoutTextSearchable
65
- - YogaKit (~> 1.18)
66
- - FlipperKit/FlipperKitLayoutTextSearchable (0.125.0)
67
- - FlipperKit/FlipperKitNetworkPlugin (0.125.0):
68
- - FlipperKit/Core
69
- - FlipperKit/FlipperKitReactPlugin (0.125.0):
70
- - FlipperKit/Core
71
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0):
72
- - FlipperKit/Core
73
- - FlipperKit/SKIOSNetworkPlugin (0.125.0):
74
- - FlipperKit/Core
75
- - FlipperKit/FlipperKitNetworkPlugin
76
- - fmt (6.2.1)
77
- - glog (0.3.5)
78
- - Judo3DS2_iOS (1.1.3)
79
- - JudoKit-iOS (3.2.1):
80
- - DeviceDNA (~> 2.0.0)
81
- - Judo3DS2_iOS (~> 1.1.3)
82
- - TrustKit
83
- - ZappMerchantLib
84
- - libevent (2.1.12)
85
- - OpenSSL-Universal (1.1.1100)
86
- - RCT-Folly (2021.06.28.00-v2):
87
- - boost
88
- - DoubleConversion
89
- - fmt (~> 6.2.1)
90
- - glog
91
- - RCT-Folly/Default (= 2021.06.28.00-v2)
92
- - RCT-Folly/Default (2021.06.28.00-v2):
93
- - boost
94
- - DoubleConversion
95
- - fmt (~> 6.2.1)
96
- - glog
97
- - RCTRequired (0.69.7)
98
- - RCTTypeSafety (0.69.7):
99
- - FBLazyVector (= 0.69.7)
100
- - RCTRequired (= 0.69.7)
101
- - React-Core (= 0.69.7)
102
- - React (0.69.7):
103
- - React-Core (= 0.69.7)
104
- - React-Core/DevSupport (= 0.69.7)
105
- - React-Core/RCTWebSocket (= 0.69.7)
106
- - React-RCTActionSheet (= 0.69.7)
107
- - React-RCTAnimation (= 0.69.7)
108
- - React-RCTBlob (= 0.69.7)
109
- - React-RCTImage (= 0.69.7)
110
- - React-RCTLinking (= 0.69.7)
111
- - React-RCTNetwork (= 0.69.7)
112
- - React-RCTSettings (= 0.69.7)
113
- - React-RCTText (= 0.69.7)
114
- - React-RCTVibration (= 0.69.7)
115
- - React-bridging (0.69.7):
116
- - RCT-Folly (= 2021.06.28.00-v2)
117
- - React-jsi (= 0.69.7)
118
- - React-callinvoker (0.69.7)
119
- - React-Codegen (0.69.7):
120
- - FBReactNativeSpec (= 0.69.7)
121
- - RCT-Folly (= 2021.06.28.00-v2)
122
- - RCTRequired (= 0.69.7)
123
- - RCTTypeSafety (= 0.69.7)
124
- - React-Core (= 0.69.7)
125
- - React-jsi (= 0.69.7)
126
- - React-jsiexecutor (= 0.69.7)
127
- - ReactCommon/turbomodule/core (= 0.69.7)
128
- - React-Core (0.69.7):
129
- - glog
130
- - RCT-Folly (= 2021.06.28.00-v2)
131
- - React-Core/Default (= 0.69.7)
132
- - React-cxxreact (= 0.69.7)
133
- - React-jsi (= 0.69.7)
134
- - React-jsiexecutor (= 0.69.7)
135
- - React-perflogger (= 0.69.7)
136
- - Yoga
137
- - React-Core/CoreModulesHeaders (0.69.7):
138
- - glog
139
- - RCT-Folly (= 2021.06.28.00-v2)
140
- - React-Core/Default
141
- - React-cxxreact (= 0.69.7)
142
- - React-jsi (= 0.69.7)
143
- - React-jsiexecutor (= 0.69.7)
144
- - React-perflogger (= 0.69.7)
145
- - Yoga
146
- - React-Core/Default (0.69.7):
147
- - glog
148
- - RCT-Folly (= 2021.06.28.00-v2)
149
- - React-cxxreact (= 0.69.7)
150
- - React-jsi (= 0.69.7)
151
- - React-jsiexecutor (= 0.69.7)
152
- - React-perflogger (= 0.69.7)
153
- - Yoga
154
- - React-Core/DevSupport (0.69.7):
155
- - glog
156
- - RCT-Folly (= 2021.06.28.00-v2)
157
- - React-Core/Default (= 0.69.7)
158
- - React-Core/RCTWebSocket (= 0.69.7)
159
- - React-cxxreact (= 0.69.7)
160
- - React-jsi (= 0.69.7)
161
- - React-jsiexecutor (= 0.69.7)
162
- - React-jsinspector (= 0.69.7)
163
- - React-perflogger (= 0.69.7)
164
- - Yoga
165
- - React-Core/RCTActionSheetHeaders (0.69.7):
166
- - glog
167
- - RCT-Folly (= 2021.06.28.00-v2)
168
- - React-Core/Default
169
- - React-cxxreact (= 0.69.7)
170
- - React-jsi (= 0.69.7)
171
- - React-jsiexecutor (= 0.69.7)
172
- - React-perflogger (= 0.69.7)
173
- - Yoga
174
- - React-Core/RCTAnimationHeaders (0.69.7):
175
- - glog
176
- - RCT-Folly (= 2021.06.28.00-v2)
177
- - React-Core/Default
178
- - React-cxxreact (= 0.69.7)
179
- - React-jsi (= 0.69.7)
180
- - React-jsiexecutor (= 0.69.7)
181
- - React-perflogger (= 0.69.7)
182
- - Yoga
183
- - React-Core/RCTBlobHeaders (0.69.7):
184
- - glog
185
- - RCT-Folly (= 2021.06.28.00-v2)
186
- - React-Core/Default
187
- - React-cxxreact (= 0.69.7)
188
- - React-jsi (= 0.69.7)
189
- - React-jsiexecutor (= 0.69.7)
190
- - React-perflogger (= 0.69.7)
191
- - Yoga
192
- - React-Core/RCTImageHeaders (0.69.7):
193
- - glog
194
- - RCT-Folly (= 2021.06.28.00-v2)
195
- - React-Core/Default
196
- - React-cxxreact (= 0.69.7)
197
- - React-jsi (= 0.69.7)
198
- - React-jsiexecutor (= 0.69.7)
199
- - React-perflogger (= 0.69.7)
200
- - Yoga
201
- - React-Core/RCTLinkingHeaders (0.69.7):
202
- - glog
203
- - RCT-Folly (= 2021.06.28.00-v2)
204
- - React-Core/Default
205
- - React-cxxreact (= 0.69.7)
206
- - React-jsi (= 0.69.7)
207
- - React-jsiexecutor (= 0.69.7)
208
- - React-perflogger (= 0.69.7)
209
- - Yoga
210
- - React-Core/RCTNetworkHeaders (0.69.7):
211
- - glog
212
- - RCT-Folly (= 2021.06.28.00-v2)
213
- - React-Core/Default
214
- - React-cxxreact (= 0.69.7)
215
- - React-jsi (= 0.69.7)
216
- - React-jsiexecutor (= 0.69.7)
217
- - React-perflogger (= 0.69.7)
218
- - Yoga
219
- - React-Core/RCTSettingsHeaders (0.69.7):
220
- - glog
221
- - RCT-Folly (= 2021.06.28.00-v2)
222
- - React-Core/Default
223
- - React-cxxreact (= 0.69.7)
224
- - React-jsi (= 0.69.7)
225
- - React-jsiexecutor (= 0.69.7)
226
- - React-perflogger (= 0.69.7)
227
- - Yoga
228
- - React-Core/RCTTextHeaders (0.69.7):
229
- - glog
230
- - RCT-Folly (= 2021.06.28.00-v2)
231
- - React-Core/Default
232
- - React-cxxreact (= 0.69.7)
233
- - React-jsi (= 0.69.7)
234
- - React-jsiexecutor (= 0.69.7)
235
- - React-perflogger (= 0.69.7)
236
- - Yoga
237
- - React-Core/RCTVibrationHeaders (0.69.7):
238
- - glog
239
- - RCT-Folly (= 2021.06.28.00-v2)
240
- - React-Core/Default
241
- - React-cxxreact (= 0.69.7)
242
- - React-jsi (= 0.69.7)
243
- - React-jsiexecutor (= 0.69.7)
244
- - React-perflogger (= 0.69.7)
245
- - Yoga
246
- - React-Core/RCTWebSocket (0.69.7):
247
- - glog
248
- - RCT-Folly (= 2021.06.28.00-v2)
249
- - React-Core/Default (= 0.69.7)
250
- - React-cxxreact (= 0.69.7)
251
- - React-jsi (= 0.69.7)
252
- - React-jsiexecutor (= 0.69.7)
253
- - React-perflogger (= 0.69.7)
254
- - Yoga
255
- - React-CoreModules (0.69.7):
256
- - RCT-Folly (= 2021.06.28.00-v2)
257
- - RCTTypeSafety (= 0.69.7)
258
- - React-Codegen (= 0.69.7)
259
- - React-Core/CoreModulesHeaders (= 0.69.7)
260
- - React-jsi (= 0.69.7)
261
- - React-RCTImage (= 0.69.7)
262
- - ReactCommon/turbomodule/core (= 0.69.7)
263
- - React-cxxreact (0.69.7):
264
- - boost (= 1.76.0)
265
- - DoubleConversion
266
- - glog
267
- - RCT-Folly (= 2021.06.28.00-v2)
268
- - React-callinvoker (= 0.69.7)
269
- - React-jsi (= 0.69.7)
270
- - React-jsinspector (= 0.69.7)
271
- - React-logger (= 0.69.7)
272
- - React-perflogger (= 0.69.7)
273
- - React-runtimeexecutor (= 0.69.7)
274
- - React-jsi (0.69.7):
275
- - boost (= 1.76.0)
276
- - DoubleConversion
277
- - glog
278
- - RCT-Folly (= 2021.06.28.00-v2)
279
- - React-jsi/Default (= 0.69.7)
280
- - React-jsi/Default (0.69.7):
281
- - boost (= 1.76.0)
282
- - DoubleConversion
283
- - glog
284
- - RCT-Folly (= 2021.06.28.00-v2)
285
- - React-jsiexecutor (0.69.7):
286
- - DoubleConversion
287
- - glog
288
- - RCT-Folly (= 2021.06.28.00-v2)
289
- - React-cxxreact (= 0.69.7)
290
- - React-jsi (= 0.69.7)
291
- - React-perflogger (= 0.69.7)
292
- - React-jsinspector (0.69.7)
293
- - React-logger (0.69.7):
294
- - glog
295
- - React-perflogger (0.69.7)
296
- - React-RCTActionSheet (0.69.7):
297
- - React-Core/RCTActionSheetHeaders (= 0.69.7)
298
- - React-RCTAnimation (0.69.7):
299
- - RCT-Folly (= 2021.06.28.00-v2)
300
- - RCTTypeSafety (= 0.69.7)
301
- - React-Codegen (= 0.69.7)
302
- - React-Core/RCTAnimationHeaders (= 0.69.7)
303
- - React-jsi (= 0.69.7)
304
- - ReactCommon/turbomodule/core (= 0.69.7)
305
- - React-RCTBlob (0.69.7):
306
- - RCT-Folly (= 2021.06.28.00-v2)
307
- - React-Codegen (= 0.69.7)
308
- - React-Core/RCTBlobHeaders (= 0.69.7)
309
- - React-Core/RCTWebSocket (= 0.69.7)
310
- - React-jsi (= 0.69.7)
311
- - React-RCTNetwork (= 0.69.7)
312
- - ReactCommon/turbomodule/core (= 0.69.7)
313
- - React-RCTImage (0.69.7):
314
- - RCT-Folly (= 2021.06.28.00-v2)
315
- - RCTTypeSafety (= 0.69.7)
316
- - React-Codegen (= 0.69.7)
317
- - React-Core/RCTImageHeaders (= 0.69.7)
318
- - React-jsi (= 0.69.7)
319
- - React-RCTNetwork (= 0.69.7)
320
- - ReactCommon/turbomodule/core (= 0.69.7)
321
- - React-RCTLinking (0.69.7):
322
- - React-Codegen (= 0.69.7)
323
- - React-Core/RCTLinkingHeaders (= 0.69.7)
324
- - React-jsi (= 0.69.7)
325
- - ReactCommon/turbomodule/core (= 0.69.7)
326
- - React-RCTNetwork (0.69.7):
327
- - RCT-Folly (= 2021.06.28.00-v2)
328
- - RCTTypeSafety (= 0.69.7)
329
- - React-Codegen (= 0.69.7)
330
- - React-Core/RCTNetworkHeaders (= 0.69.7)
331
- - React-jsi (= 0.69.7)
332
- - ReactCommon/turbomodule/core (= 0.69.7)
333
- - React-RCTSettings (0.69.7):
334
- - RCT-Folly (= 2021.06.28.00-v2)
335
- - RCTTypeSafety (= 0.69.7)
336
- - React-Codegen (= 0.69.7)
337
- - React-Core/RCTSettingsHeaders (= 0.69.7)
338
- - React-jsi (= 0.69.7)
339
- - ReactCommon/turbomodule/core (= 0.69.7)
340
- - React-RCTText (0.69.7):
341
- - React-Core/RCTTextHeaders (= 0.69.7)
342
- - React-RCTVibration (0.69.7):
343
- - RCT-Folly (= 2021.06.28.00-v2)
344
- - React-Codegen (= 0.69.7)
345
- - React-Core/RCTVibrationHeaders (= 0.69.7)
346
- - React-jsi (= 0.69.7)
347
- - ReactCommon/turbomodule/core (= 0.69.7)
348
- - React-runtimeexecutor (0.69.7):
349
- - React-jsi (= 0.69.7)
350
- - ReactCommon/turbomodule/core (0.69.7):
351
- - DoubleConversion
352
- - glog
353
- - RCT-Folly (= 2021.06.28.00-v2)
354
- - React-bridging (= 0.69.7)
355
- - React-callinvoker (= 0.69.7)
356
- - React-Core (= 0.69.7)
357
- - React-cxxreact (= 0.69.7)
358
- - React-jsi (= 0.69.7)
359
- - React-logger (= 0.69.7)
360
- - React-perflogger (= 0.69.7)
361
- - SocketRocket (0.6.0)
362
- - TrustKit (3.0.2)
363
- - Yoga (1.14.0)
364
- - YogaKit (1.18.1):
365
- - Yoga (~> 1.14)
366
- - ZappMerchantLib (3.1.0)
367
-
368
- DEPENDENCIES:
369
- - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
370
- - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
371
- - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
372
- - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
373
- - Flipper (= 0.125.0)
374
- - Flipper-Boost-iOSX (= 1.76.0.1.11)
375
- - Flipper-DoubleConversion (= 3.2.0.1)
376
- - Flipper-Fmt (= 7.1.7)
377
- - Flipper-Folly (= 2.6.10)
378
- - Flipper-Glog (= 0.5.0.5)
379
- - Flipper-PeerTalk (= 0.0.4)
380
- - Flipper-RSocket (= 1.4.3)
381
- - FlipperKit (= 0.125.0)
382
- - FlipperKit/Core (= 0.125.0)
383
- - FlipperKit/CppBridge (= 0.125.0)
384
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0)
385
- - FlipperKit/FBDefines (= 0.125.0)
386
- - FlipperKit/FKPortForwarding (= 0.125.0)
387
- - FlipperKit/FlipperKitHighlightOverlay (= 0.125.0)
388
- - FlipperKit/FlipperKitLayoutPlugin (= 0.125.0)
389
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0)
390
- - FlipperKit/FlipperKitNetworkPlugin (= 0.125.0)
391
- - FlipperKit/FlipperKitReactPlugin (= 0.125.0)
392
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0)
393
- - FlipperKit/SKIOSNetworkPlugin (= 0.125.0)
394
- - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
395
- - JudoKit-iOS (= 3.2.1)
396
- - OpenSSL-Universal (= 1.1.1100)
397
- - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
398
- - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
399
- - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
400
- - React (from `../node_modules/react-native/`)
401
- - React-bridging (from `../node_modules/react-native/ReactCommon`)
402
- - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
403
- - React-Codegen (from `build/generated/ios`)
404
- - React-Core (from `../node_modules/react-native/`)
405
- - React-Core/DevSupport (from `../node_modules/react-native/`)
406
- - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
407
- - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
408
- - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
409
- - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
410
- - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
411
- - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
412
- - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
413
- - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
414
- - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
415
- - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
416
- - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
417
- - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
418
- - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
419
- - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
420
- - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
421
- - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
422
- - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
423
- - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
424
- - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
425
- - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
426
-
427
- SPEC REPOS:
428
- trunk:
429
- - CocoaAsyncSocket
430
- - DeviceDNA
431
- - Flipper
432
- - Flipper-Boost-iOSX
433
- - Flipper-DoubleConversion
434
- - Flipper-Fmt
435
- - Flipper-Folly
436
- - Flipper-Glog
437
- - Flipper-PeerTalk
438
- - Flipper-RSocket
439
- - FlipperKit
440
- - fmt
441
- - Judo3DS2_iOS
442
- - JudoKit-iOS
443
- - libevent
444
- - OpenSSL-Universal
445
- - SocketRocket
446
- - TrustKit
447
- - YogaKit
448
- - ZappMerchantLib
449
-
450
- EXTERNAL SOURCES:
451
- boost:
452
- :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
453
- DoubleConversion:
454
- :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
455
- FBLazyVector:
456
- :path: "../node_modules/react-native/Libraries/FBLazyVector"
457
- FBReactNativeSpec:
458
- :path: "../node_modules/react-native/React/FBReactNativeSpec"
459
- glog:
460
- :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
461
- RCT-Folly:
462
- :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
463
- RCTRequired:
464
- :path: "../node_modules/react-native/Libraries/RCTRequired"
465
- RCTTypeSafety:
466
- :path: "../node_modules/react-native/Libraries/TypeSafety"
467
- React:
468
- :path: "../node_modules/react-native/"
469
- React-bridging:
470
- :path: "../node_modules/react-native/ReactCommon"
471
- React-callinvoker:
472
- :path: "../node_modules/react-native/ReactCommon/callinvoker"
473
- React-Codegen:
474
- :path: build/generated/ios
475
- React-Core:
476
- :path: "../node_modules/react-native/"
477
- React-CoreModules:
478
- :path: "../node_modules/react-native/React/CoreModules"
479
- React-cxxreact:
480
- :path: "../node_modules/react-native/ReactCommon/cxxreact"
481
- React-jsi:
482
- :path: "../node_modules/react-native/ReactCommon/jsi"
483
- React-jsiexecutor:
484
- :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
485
- React-jsinspector:
486
- :path: "../node_modules/react-native/ReactCommon/jsinspector"
487
- React-logger:
488
- :path: "../node_modules/react-native/ReactCommon/logger"
489
- React-perflogger:
490
- :path: "../node_modules/react-native/ReactCommon/reactperflogger"
491
- React-RCTActionSheet:
492
- :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
493
- React-RCTAnimation:
494
- :path: "../node_modules/react-native/Libraries/NativeAnimation"
495
- React-RCTBlob:
496
- :path: "../node_modules/react-native/Libraries/Blob"
497
- React-RCTImage:
498
- :path: "../node_modules/react-native/Libraries/Image"
499
- React-RCTLinking:
500
- :path: "../node_modules/react-native/Libraries/LinkingIOS"
501
- React-RCTNetwork:
502
- :path: "../node_modules/react-native/Libraries/Network"
503
- React-RCTSettings:
504
- :path: "../node_modules/react-native/Libraries/Settings"
505
- React-RCTText:
506
- :path: "../node_modules/react-native/Libraries/Text"
507
- React-RCTVibration:
508
- :path: "../node_modules/react-native/Libraries/Vibration"
509
- React-runtimeexecutor:
510
- :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
511
- ReactCommon:
512
- :path: "../node_modules/react-native/ReactCommon"
513
- Yoga:
514
- :path: "../node_modules/react-native/ReactCommon/yoga"
515
-
516
- SPEC CHECKSUMS:
517
- boost: a7c83b31436843459a1961bfd74b96033dc77234
518
- CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
519
- DeviceDNA: 9ff289d1fb983937754b324fa0adade2081210c4
520
- DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
521
- FBLazyVector: 6b7f5692909b4300d50e7359cdefbcd09dd30faa
522
- FBReactNativeSpec: affcf71d996f6b0c01f68883482588297b9d5e6e
523
- Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0
524
- Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
525
- Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
526
- Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
527
- Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
528
- Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
529
- Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
530
- Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
531
- FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86
532
- fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
533
- glog: 3d02b25ca00c2d456734d0bcff864cbc62f6ae1a
534
- Judo3DS2_iOS: b2396a1f0aa3e8d428fdd887c8b6eae5d3aa4f79
535
- JudoKit-iOS: 6d12dc10d1d84fe020ecbfcca1ca986bf563f7e9
536
- libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
537
- OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
538
- RCT-Folly: b9d9fe1fc70114b751c076104e52f3b1b5e5a95a
539
- RCTRequired: 54bff6aa61efd9598ab59d2a823c382b4fe13d27
540
- RCTTypeSafety: 47632bfa768df7befde08e339a9847e6cff6ff78
541
- React: 72a676de573cc5ee0e375e5535238af9a4bd435c
542
- React-bridging: 12b6677a30fbd46555a35aa6096331737a9af598
543
- React-callinvoker: bb574a923c2281d01be23ed3b5d405caa583f56d
544
- React-Codegen: a5e05592b65963a4a453808d2233a04edb7ac8cd
545
- React-Core: 138385d05068622b2b1873eee7dc5be9762f5383
546
- React-CoreModules: 3a9be624998677db102b19090b1c33c7564ead6d
547
- React-cxxreact: eb24a767b0b811259947f3d538e7c999467e7131
548
- React-jsi: 9c1cc1173fc8a24b094e01c54d8e3b567fed7edc
549
- React-jsiexecutor: a73bec0218ba959fc92f811b581ad6c2270c6b6f
550
- React-jsinspector: 8134ee22182b8dd98dc0973db6266c398103ce6c
551
- React-logger: 1e7ac909607ee65fd5c4d8bea8c6e644f66b8843
552
- React-perflogger: 8e832d4e21fdfa613033c76d58d7e617341e804b
553
- React-RCTActionSheet: 9ca778182a9523991bff6381045885b6e808bb73
554
- React-RCTAnimation: 9ced26ad20b96e532ac791a8ab92a7b1ce2266b8
555
- React-RCTBlob: 2ca3402386d6ab8e9a9a39117305c7601ba2a7f8
556
- React-RCTImage: 7be51899367082a49e7a7560247ab3961e4dd248
557
- React-RCTLinking: 262229106f181d8187a5a041fa0dffe6e9726347
558
- React-RCTNetwork: 428b6f17bf4684ede387422eb789ca89365e33d3
559
- React-RCTSettings: eaef83489b80045528f1fe1ea5daefaa586ed763
560
- React-RCTText: d197cff9d5d7f68bdb88468d94617bbf2aa6a48d
561
- React-RCTVibration: 600a9f8b3537db360563d50fab3d040c262567d4
562
- React-runtimeexecutor: 65cd2782a57e1d59a68aa5d504edf94278578e41
563
- ReactCommon: 1e783348b9aa73ae68236271df972ba898560a95
564
- SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
565
- TrustKit: 55804401e9a95db0bbfff9a08373bfd91953071f
566
- Yoga: 0b84a956f7393ef1f37f3bb213c516184e4a689d
567
- YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
568
- ZappMerchantLib: b14bc5814840426d351190309250347ca9b0983d
569
-
570
- PODFILE CHECKSUM: 5cbefa13df8faa29c30e02942d14115a357c82dc
571
-
572
- COCOAPODS: 1.12.1