react-native-qrcode-svg 6.3.2 → 6.3.11

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 (91) hide show
  1. package/Example/.bundle/config +2 -0
  2. package/Example/.eslintrc.js +4 -0
  3. package/Example/.prettierrc.js +7 -0
  4. package/Example/.watchmanconfig +1 -0
  5. package/Example/Gemfile +9 -0
  6. package/Example/Gemfile.lock +103 -0
  7. package/Example/README.md +48 -0
  8. package/Example/__tests__/App.test.tsx +17 -0
  9. package/Example/android/app/build.gradle +119 -0
  10. package/Example/android/app/debug.keystore +0 -0
  11. package/Example/android/app/proguard-rules.pro +10 -0
  12. package/Example/android/app/src/debug/AndroidManifest.xml +9 -0
  13. package/Example/android/app/src/main/AndroidManifest.xml +25 -0
  14. package/Example/android/app/src/main/java/com/example/MainActivity.kt +22 -0
  15. package/Example/android/app/src/main/java/com/example/MainApplication.kt +45 -0
  16. package/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  17. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  18. package/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  19. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  20. package/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  21. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  22. package/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  23. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  24. package/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  25. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  26. package/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  27. package/Example/android/app/src/main/res/values/strings.xml +3 -0
  28. package/Example/android/app/src/main/res/values/styles.xml +9 -0
  29. package/Example/android/build.gradle +21 -0
  30. package/Example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  31. package/Example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  32. package/Example/android/gradle.properties +41 -0
  33. package/Example/android/gradlew +249 -0
  34. package/Example/android/gradlew.bat +92 -0
  35. package/Example/android/settings.gradle +4 -0
  36. package/Example/app.json +4 -0
  37. package/Example/babel.config.js +4 -0
  38. package/Example/dist/index.html +24 -0
  39. package/Example/global.d.ts +7 -0
  40. package/Example/index.js +14 -0
  41. package/Example/ios/.xcode.env +11 -0
  42. package/Example/ios/Example/AppDelegate.h +6 -0
  43. package/Example/ios/Example/AppDelegate.mm +31 -0
  44. package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  45. package/Example/ios/Example/Images.xcassets/Contents.json +6 -0
  46. package/Example/ios/Example/Info.plist +52 -0
  47. package/Example/ios/Example/LaunchScreen.storyboard +47 -0
  48. package/Example/ios/Example/main.m +10 -0
  49. package/Example/ios/Example.xcodeproj/project.pbxproj +698 -0
  50. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +88 -0
  51. package/Example/ios/Example.xcworkspace/contents.xcworkspacedata +10 -0
  52. package/Example/ios/ExampleTests/ExampleTests.m +66 -0
  53. package/Example/ios/ExampleTests/Info.plist +24 -0
  54. package/Example/ios/Podfile +55 -0
  55. package/Example/ios/Podfile.lock +1378 -0
  56. package/Example/jest.config.js +3 -0
  57. package/Example/macos/.xcode.env +1 -0
  58. package/Example/macos/.xcode.env.local +2 -0
  59. package/Example/macos/Example-macOS/AppDelegate.h +6 -0
  60. package/Example/macos/Example-macOS/AppDelegate.mm +40 -0
  61. package/Example/macos/Example-macOS/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
  62. package/Example/macos/Example-macOS/Assets.xcassets/Contents.json +6 -0
  63. package/Example/macos/Example-macOS/Base.lproj/Main.storyboard +684 -0
  64. package/Example/macos/Example-macOS/Example.entitlements +12 -0
  65. package/Example/macos/Example-macOS/Info.plist +47 -0
  66. package/Example/macos/Example-macOS/main.m +5 -0
  67. package/Example/macos/Example.xcodeproj/project.pbxproj +567 -0
  68. package/Example/macos/Example.xcodeproj/xcshareddata/xcschemes/Example-macOS.xcscheme +78 -0
  69. package/Example/macos/Example.xcworkspace/contents.xcworkspacedata +10 -0
  70. package/Example/macos/Podfile +26 -0
  71. package/Example/macos/Podfile.lock +1233 -0
  72. package/Example/metro.config.js +47 -0
  73. package/Example/package.json +53 -0
  74. package/Example/src/App.tsx +130 -0
  75. package/Example/src/assets/google.png +0 -0
  76. package/Example/src/assets/ruby.svg +12 -0
  77. package/Example/src/components/Description.tsx +16 -0
  78. package/Example/src/styles.ts +21 -0
  79. package/Example/tsconfig.json +9 -0
  80. package/Example/webpack.config.js +60 -0
  81. package/Example/yarn.lock +8957 -0
  82. package/README.md +0 -6
  83. package/index.d.ts +10 -2
  84. package/package.json +11 -2
  85. package/src/LogoSVG/index.js +22 -0
  86. package/src/LogoSVG/index.native.js +24 -0
  87. package/src/index.js +158 -125
  88. package/src/utils.js +7 -0
  89. package/.github/workflows/npmpublish.yml +0 -31
  90. package/.huskyrc +0 -5
  91. package/.lintstagedrc +0 -3
@@ -0,0 +1,1378 @@
1
+ PODS:
2
+ - boost (1.83.0)
3
+ - CocoaAsyncSocket (7.6.5)
4
+ - DoubleConversion (1.1.6)
5
+ - FBLazyVector (0.73.9)
6
+ - FBReactNativeSpec (0.73.9):
7
+ - RCT-Folly (= 2022.05.16.00)
8
+ - RCTRequired (= 0.73.9)
9
+ - RCTTypeSafety (= 0.73.9)
10
+ - React-Core (= 0.73.9)
11
+ - React-jsi (= 0.73.9)
12
+ - ReactCommon/turbomodule/core (= 0.73.9)
13
+ - Flipper (0.201.0):
14
+ - Flipper-Folly (~> 2.6)
15
+ - Flipper-Boost-iOSX (1.76.0.1.11)
16
+ - Flipper-DoubleConversion (3.2.0.1)
17
+ - Flipper-Fmt (7.1.7)
18
+ - Flipper-Folly (2.6.10):
19
+ - Flipper-Boost-iOSX
20
+ - Flipper-DoubleConversion
21
+ - Flipper-Fmt (= 7.1.7)
22
+ - Flipper-Glog
23
+ - libevent (~> 2.1.12)
24
+ - OpenSSL-Universal (= 1.1.1100)
25
+ - Flipper-Glog (0.5.0.5)
26
+ - Flipper-PeerTalk (0.0.4)
27
+ - FlipperKit (0.201.0):
28
+ - FlipperKit/Core (= 0.201.0)
29
+ - FlipperKit/Core (0.201.0):
30
+ - Flipper (~> 0.201.0)
31
+ - FlipperKit/CppBridge
32
+ - FlipperKit/FBCxxFollyDynamicConvert
33
+ - FlipperKit/FBDefines
34
+ - FlipperKit/FKPortForwarding
35
+ - SocketRocket (~> 0.6.0)
36
+ - FlipperKit/CppBridge (0.201.0):
37
+ - Flipper (~> 0.201.0)
38
+ - FlipperKit/FBCxxFollyDynamicConvert (0.201.0):
39
+ - Flipper-Folly (~> 2.6)
40
+ - FlipperKit/FBDefines (0.201.0)
41
+ - FlipperKit/FKPortForwarding (0.201.0):
42
+ - CocoaAsyncSocket (~> 7.6)
43
+ - Flipper-PeerTalk (~> 0.0.4)
44
+ - FlipperKit/FlipperKitHighlightOverlay (0.201.0)
45
+ - FlipperKit/FlipperKitLayoutHelpers (0.201.0):
46
+ - FlipperKit/Core
47
+ - FlipperKit/FlipperKitHighlightOverlay
48
+ - FlipperKit/FlipperKitLayoutTextSearchable
49
+ - FlipperKit/FlipperKitLayoutIOSDescriptors (0.201.0):
50
+ - FlipperKit/Core
51
+ - FlipperKit/FlipperKitHighlightOverlay
52
+ - FlipperKit/FlipperKitLayoutHelpers
53
+ - FlipperKit/FlipperKitLayoutPlugin (0.201.0):
54
+ - FlipperKit/Core
55
+ - FlipperKit/FlipperKitHighlightOverlay
56
+ - FlipperKit/FlipperKitLayoutHelpers
57
+ - FlipperKit/FlipperKitLayoutIOSDescriptors
58
+ - FlipperKit/FlipperKitLayoutTextSearchable
59
+ - FlipperKit/FlipperKitLayoutTextSearchable (0.201.0)
60
+ - FlipperKit/FlipperKitNetworkPlugin (0.201.0):
61
+ - FlipperKit/Core
62
+ - FlipperKit/FlipperKitReactPlugin (0.201.0):
63
+ - FlipperKit/Core
64
+ - FlipperKit/FlipperKitUserDefaultsPlugin (0.201.0):
65
+ - FlipperKit/Core
66
+ - FlipperKit/SKIOSNetworkPlugin (0.201.0):
67
+ - FlipperKit/Core
68
+ - FlipperKit/FlipperKitNetworkPlugin
69
+ - fmt (6.2.1)
70
+ - glog (0.3.5)
71
+ - hermes-engine (0.73.9):
72
+ - hermes-engine/Pre-built (= 0.73.9)
73
+ - hermes-engine/Pre-built (0.73.9)
74
+ - libevent (2.1.12)
75
+ - OpenSSL-Universal (1.1.1100)
76
+ - RCT-Folly (2022.05.16.00):
77
+ - boost
78
+ - DoubleConversion
79
+ - fmt (~> 6.2.1)
80
+ - glog
81
+ - RCT-Folly/Default (= 2022.05.16.00)
82
+ - RCT-Folly/Default (2022.05.16.00):
83
+ - boost
84
+ - DoubleConversion
85
+ - fmt (~> 6.2.1)
86
+ - glog
87
+ - RCT-Folly/Fabric (2022.05.16.00):
88
+ - boost
89
+ - DoubleConversion
90
+ - fmt (~> 6.2.1)
91
+ - glog
92
+ - RCT-Folly/Futures (2022.05.16.00):
93
+ - boost
94
+ - DoubleConversion
95
+ - fmt (~> 6.2.1)
96
+ - glog
97
+ - libevent
98
+ - RCTRequired (0.73.9)
99
+ - RCTTypeSafety (0.73.9):
100
+ - FBLazyVector (= 0.73.9)
101
+ - RCTRequired (= 0.73.9)
102
+ - React-Core (= 0.73.9)
103
+ - React (0.73.9):
104
+ - React-Core (= 0.73.9)
105
+ - React-Core/DevSupport (= 0.73.9)
106
+ - React-Core/RCTWebSocket (= 0.73.9)
107
+ - React-RCTActionSheet (= 0.73.9)
108
+ - React-RCTAnimation (= 0.73.9)
109
+ - React-RCTBlob (= 0.73.9)
110
+ - React-RCTImage (= 0.73.9)
111
+ - React-RCTLinking (= 0.73.9)
112
+ - React-RCTNetwork (= 0.73.9)
113
+ - React-RCTSettings (= 0.73.9)
114
+ - React-RCTText (= 0.73.9)
115
+ - React-RCTVibration (= 0.73.9)
116
+ - React-callinvoker (0.73.9)
117
+ - React-Codegen (0.73.9):
118
+ - DoubleConversion
119
+ - FBReactNativeSpec
120
+ - glog
121
+ - hermes-engine
122
+ - RCT-Folly
123
+ - RCTRequired
124
+ - RCTTypeSafety
125
+ - React-Core
126
+ - React-jsi
127
+ - React-jsiexecutor
128
+ - React-NativeModulesApple
129
+ - React-rncore
130
+ - ReactCommon/turbomodule/bridging
131
+ - ReactCommon/turbomodule/core
132
+ - React-Core (0.73.9):
133
+ - glog
134
+ - hermes-engine
135
+ - RCT-Folly (= 2022.05.16.00)
136
+ - React-Core/Default (= 0.73.9)
137
+ - React-cxxreact
138
+ - React-hermes
139
+ - React-jsi
140
+ - React-jsiexecutor
141
+ - React-perflogger
142
+ - React-runtimescheduler
143
+ - React-utils
144
+ - SocketRocket (= 0.6.1)
145
+ - Yoga
146
+ - React-Core/CoreModulesHeaders (0.73.9):
147
+ - glog
148
+ - hermes-engine
149
+ - RCT-Folly (= 2022.05.16.00)
150
+ - React-Core/Default
151
+ - React-cxxreact
152
+ - React-hermes
153
+ - React-jsi
154
+ - React-jsiexecutor
155
+ - React-perflogger
156
+ - React-runtimescheduler
157
+ - React-utils
158
+ - SocketRocket (= 0.6.1)
159
+ - Yoga
160
+ - React-Core/Default (0.73.9):
161
+ - glog
162
+ - hermes-engine
163
+ - RCT-Folly (= 2022.05.16.00)
164
+ - React-cxxreact
165
+ - React-hermes
166
+ - React-jsi
167
+ - React-jsiexecutor
168
+ - React-perflogger
169
+ - React-runtimescheduler
170
+ - React-utils
171
+ - SocketRocket (= 0.6.1)
172
+ - Yoga
173
+ - React-Core/DevSupport (0.73.9):
174
+ - glog
175
+ - hermes-engine
176
+ - RCT-Folly (= 2022.05.16.00)
177
+ - React-Core/Default (= 0.73.9)
178
+ - React-Core/RCTWebSocket (= 0.73.9)
179
+ - React-cxxreact
180
+ - React-hermes
181
+ - React-jsi
182
+ - React-jsiexecutor
183
+ - React-jsinspector (= 0.73.9)
184
+ - React-perflogger
185
+ - React-runtimescheduler
186
+ - React-utils
187
+ - SocketRocket (= 0.6.1)
188
+ - Yoga
189
+ - React-Core/RCTActionSheetHeaders (0.73.9):
190
+ - glog
191
+ - hermes-engine
192
+ - RCT-Folly (= 2022.05.16.00)
193
+ - React-Core/Default
194
+ - React-cxxreact
195
+ - React-hermes
196
+ - React-jsi
197
+ - React-jsiexecutor
198
+ - React-perflogger
199
+ - React-runtimescheduler
200
+ - React-utils
201
+ - SocketRocket (= 0.6.1)
202
+ - Yoga
203
+ - React-Core/RCTAnimationHeaders (0.73.9):
204
+ - glog
205
+ - hermes-engine
206
+ - RCT-Folly (= 2022.05.16.00)
207
+ - React-Core/Default
208
+ - React-cxxreact
209
+ - React-hermes
210
+ - React-jsi
211
+ - React-jsiexecutor
212
+ - React-perflogger
213
+ - React-runtimescheduler
214
+ - React-utils
215
+ - SocketRocket (= 0.6.1)
216
+ - Yoga
217
+ - React-Core/RCTBlobHeaders (0.73.9):
218
+ - glog
219
+ - hermes-engine
220
+ - RCT-Folly (= 2022.05.16.00)
221
+ - React-Core/Default
222
+ - React-cxxreact
223
+ - React-hermes
224
+ - React-jsi
225
+ - React-jsiexecutor
226
+ - React-perflogger
227
+ - React-runtimescheduler
228
+ - React-utils
229
+ - SocketRocket (= 0.6.1)
230
+ - Yoga
231
+ - React-Core/RCTImageHeaders (0.73.9):
232
+ - glog
233
+ - hermes-engine
234
+ - RCT-Folly (= 2022.05.16.00)
235
+ - React-Core/Default
236
+ - React-cxxreact
237
+ - React-hermes
238
+ - React-jsi
239
+ - React-jsiexecutor
240
+ - React-perflogger
241
+ - React-runtimescheduler
242
+ - React-utils
243
+ - SocketRocket (= 0.6.1)
244
+ - Yoga
245
+ - React-Core/RCTLinkingHeaders (0.73.9):
246
+ - glog
247
+ - hermes-engine
248
+ - RCT-Folly (= 2022.05.16.00)
249
+ - React-Core/Default
250
+ - React-cxxreact
251
+ - React-hermes
252
+ - React-jsi
253
+ - React-jsiexecutor
254
+ - React-perflogger
255
+ - React-runtimescheduler
256
+ - React-utils
257
+ - SocketRocket (= 0.6.1)
258
+ - Yoga
259
+ - React-Core/RCTNetworkHeaders (0.73.9):
260
+ - glog
261
+ - hermes-engine
262
+ - RCT-Folly (= 2022.05.16.00)
263
+ - React-Core/Default
264
+ - React-cxxreact
265
+ - React-hermes
266
+ - React-jsi
267
+ - React-jsiexecutor
268
+ - React-perflogger
269
+ - React-runtimescheduler
270
+ - React-utils
271
+ - SocketRocket (= 0.6.1)
272
+ - Yoga
273
+ - React-Core/RCTSettingsHeaders (0.73.9):
274
+ - glog
275
+ - hermes-engine
276
+ - RCT-Folly (= 2022.05.16.00)
277
+ - React-Core/Default
278
+ - React-cxxreact
279
+ - React-hermes
280
+ - React-jsi
281
+ - React-jsiexecutor
282
+ - React-perflogger
283
+ - React-runtimescheduler
284
+ - React-utils
285
+ - SocketRocket (= 0.6.1)
286
+ - Yoga
287
+ - React-Core/RCTTextHeaders (0.73.9):
288
+ - glog
289
+ - hermes-engine
290
+ - RCT-Folly (= 2022.05.16.00)
291
+ - React-Core/Default
292
+ - React-cxxreact
293
+ - React-hermes
294
+ - React-jsi
295
+ - React-jsiexecutor
296
+ - React-perflogger
297
+ - React-runtimescheduler
298
+ - React-utils
299
+ - SocketRocket (= 0.6.1)
300
+ - Yoga
301
+ - React-Core/RCTVibrationHeaders (0.73.9):
302
+ - glog
303
+ - hermes-engine
304
+ - RCT-Folly (= 2022.05.16.00)
305
+ - React-Core/Default
306
+ - React-cxxreact
307
+ - React-hermes
308
+ - React-jsi
309
+ - React-jsiexecutor
310
+ - React-perflogger
311
+ - React-runtimescheduler
312
+ - React-utils
313
+ - SocketRocket (= 0.6.1)
314
+ - Yoga
315
+ - React-Core/RCTWebSocket (0.73.9):
316
+ - glog
317
+ - hermes-engine
318
+ - RCT-Folly (= 2022.05.16.00)
319
+ - React-Core/Default (= 0.73.9)
320
+ - React-cxxreact
321
+ - React-hermes
322
+ - React-jsi
323
+ - React-jsiexecutor
324
+ - React-perflogger
325
+ - React-runtimescheduler
326
+ - React-utils
327
+ - SocketRocket (= 0.6.1)
328
+ - Yoga
329
+ - React-CoreModules (0.73.9):
330
+ - RCT-Folly (= 2022.05.16.00)
331
+ - RCTTypeSafety (= 0.73.9)
332
+ - React-Codegen
333
+ - React-Core/CoreModulesHeaders (= 0.73.9)
334
+ - React-jsi (= 0.73.9)
335
+ - React-NativeModulesApple
336
+ - React-RCTBlob
337
+ - React-RCTImage (= 0.73.9)
338
+ - ReactCommon
339
+ - SocketRocket (= 0.6.1)
340
+ - React-cxxreact (0.73.9):
341
+ - boost (= 1.83.0)
342
+ - DoubleConversion
343
+ - fmt (~> 6.2.1)
344
+ - glog
345
+ - hermes-engine
346
+ - RCT-Folly (= 2022.05.16.00)
347
+ - React-callinvoker (= 0.73.9)
348
+ - React-debug (= 0.73.9)
349
+ - React-jsi (= 0.73.9)
350
+ - React-jsinspector (= 0.73.9)
351
+ - React-logger (= 0.73.9)
352
+ - React-perflogger (= 0.73.9)
353
+ - React-runtimeexecutor (= 0.73.9)
354
+ - React-debug (0.73.9)
355
+ - React-Fabric (0.73.9):
356
+ - DoubleConversion
357
+ - fmt (~> 6.2.1)
358
+ - glog
359
+ - hermes-engine
360
+ - RCT-Folly/Fabric (= 2022.05.16.00)
361
+ - RCTRequired
362
+ - RCTTypeSafety
363
+ - React-Core
364
+ - React-cxxreact
365
+ - React-debug
366
+ - React-Fabric/animations (= 0.73.9)
367
+ - React-Fabric/attributedstring (= 0.73.9)
368
+ - React-Fabric/componentregistry (= 0.73.9)
369
+ - React-Fabric/componentregistrynative (= 0.73.9)
370
+ - React-Fabric/components (= 0.73.9)
371
+ - React-Fabric/core (= 0.73.9)
372
+ - React-Fabric/imagemanager (= 0.73.9)
373
+ - React-Fabric/leakchecker (= 0.73.9)
374
+ - React-Fabric/mounting (= 0.73.9)
375
+ - React-Fabric/scheduler (= 0.73.9)
376
+ - React-Fabric/telemetry (= 0.73.9)
377
+ - React-Fabric/templateprocessor (= 0.73.9)
378
+ - React-Fabric/textlayoutmanager (= 0.73.9)
379
+ - React-Fabric/uimanager (= 0.73.9)
380
+ - React-graphics
381
+ - React-jsi
382
+ - React-jsiexecutor
383
+ - React-logger
384
+ - React-rendererdebug
385
+ - React-runtimescheduler
386
+ - React-utils
387
+ - ReactCommon/turbomodule/core
388
+ - React-Fabric/animations (0.73.9):
389
+ - DoubleConversion
390
+ - fmt (~> 6.2.1)
391
+ - glog
392
+ - hermes-engine
393
+ - RCT-Folly/Fabric (= 2022.05.16.00)
394
+ - RCTRequired
395
+ - RCTTypeSafety
396
+ - React-Core
397
+ - React-cxxreact
398
+ - React-debug
399
+ - React-graphics
400
+ - React-jsi
401
+ - React-jsiexecutor
402
+ - React-logger
403
+ - React-rendererdebug
404
+ - React-runtimescheduler
405
+ - React-utils
406
+ - ReactCommon/turbomodule/core
407
+ - React-Fabric/attributedstring (0.73.9):
408
+ - DoubleConversion
409
+ - fmt (~> 6.2.1)
410
+ - glog
411
+ - hermes-engine
412
+ - RCT-Folly/Fabric (= 2022.05.16.00)
413
+ - RCTRequired
414
+ - RCTTypeSafety
415
+ - React-Core
416
+ - React-cxxreact
417
+ - React-debug
418
+ - React-graphics
419
+ - React-jsi
420
+ - React-jsiexecutor
421
+ - React-logger
422
+ - React-rendererdebug
423
+ - React-runtimescheduler
424
+ - React-utils
425
+ - ReactCommon/turbomodule/core
426
+ - React-Fabric/componentregistry (0.73.9):
427
+ - DoubleConversion
428
+ - fmt (~> 6.2.1)
429
+ - glog
430
+ - hermes-engine
431
+ - RCT-Folly/Fabric (= 2022.05.16.00)
432
+ - RCTRequired
433
+ - RCTTypeSafety
434
+ - React-Core
435
+ - React-cxxreact
436
+ - React-debug
437
+ - React-graphics
438
+ - React-jsi
439
+ - React-jsiexecutor
440
+ - React-logger
441
+ - React-rendererdebug
442
+ - React-runtimescheduler
443
+ - React-utils
444
+ - ReactCommon/turbomodule/core
445
+ - React-Fabric/componentregistrynative (0.73.9):
446
+ - DoubleConversion
447
+ - fmt (~> 6.2.1)
448
+ - glog
449
+ - hermes-engine
450
+ - RCT-Folly/Fabric (= 2022.05.16.00)
451
+ - RCTRequired
452
+ - RCTTypeSafety
453
+ - React-Core
454
+ - React-cxxreact
455
+ - React-debug
456
+ - React-graphics
457
+ - React-jsi
458
+ - React-jsiexecutor
459
+ - React-logger
460
+ - React-rendererdebug
461
+ - React-runtimescheduler
462
+ - React-utils
463
+ - ReactCommon/turbomodule/core
464
+ - React-Fabric/components (0.73.9):
465
+ - DoubleConversion
466
+ - fmt (~> 6.2.1)
467
+ - glog
468
+ - hermes-engine
469
+ - RCT-Folly/Fabric (= 2022.05.16.00)
470
+ - RCTRequired
471
+ - RCTTypeSafety
472
+ - React-Core
473
+ - React-cxxreact
474
+ - React-debug
475
+ - React-Fabric/components/inputaccessory (= 0.73.9)
476
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.73.9)
477
+ - React-Fabric/components/modal (= 0.73.9)
478
+ - React-Fabric/components/rncore (= 0.73.9)
479
+ - React-Fabric/components/root (= 0.73.9)
480
+ - React-Fabric/components/safeareaview (= 0.73.9)
481
+ - React-Fabric/components/scrollview (= 0.73.9)
482
+ - React-Fabric/components/text (= 0.73.9)
483
+ - React-Fabric/components/textinput (= 0.73.9)
484
+ - React-Fabric/components/unimplementedview (= 0.73.9)
485
+ - React-Fabric/components/view (= 0.73.9)
486
+ - React-graphics
487
+ - React-jsi
488
+ - React-jsiexecutor
489
+ - React-logger
490
+ - React-rendererdebug
491
+ - React-runtimescheduler
492
+ - React-utils
493
+ - ReactCommon/turbomodule/core
494
+ - React-Fabric/components/inputaccessory (0.73.9):
495
+ - DoubleConversion
496
+ - fmt (~> 6.2.1)
497
+ - glog
498
+ - hermes-engine
499
+ - RCT-Folly/Fabric (= 2022.05.16.00)
500
+ - RCTRequired
501
+ - RCTTypeSafety
502
+ - React-Core
503
+ - React-cxxreact
504
+ - React-debug
505
+ - React-graphics
506
+ - React-jsi
507
+ - React-jsiexecutor
508
+ - React-logger
509
+ - React-rendererdebug
510
+ - React-runtimescheduler
511
+ - React-utils
512
+ - ReactCommon/turbomodule/core
513
+ - React-Fabric/components/legacyviewmanagerinterop (0.73.9):
514
+ - DoubleConversion
515
+ - fmt (~> 6.2.1)
516
+ - glog
517
+ - hermes-engine
518
+ - RCT-Folly/Fabric (= 2022.05.16.00)
519
+ - RCTRequired
520
+ - RCTTypeSafety
521
+ - React-Core
522
+ - React-cxxreact
523
+ - React-debug
524
+ - React-graphics
525
+ - React-jsi
526
+ - React-jsiexecutor
527
+ - React-logger
528
+ - React-rendererdebug
529
+ - React-runtimescheduler
530
+ - React-utils
531
+ - ReactCommon/turbomodule/core
532
+ - React-Fabric/components/modal (0.73.9):
533
+ - DoubleConversion
534
+ - fmt (~> 6.2.1)
535
+ - glog
536
+ - hermes-engine
537
+ - RCT-Folly/Fabric (= 2022.05.16.00)
538
+ - RCTRequired
539
+ - RCTTypeSafety
540
+ - React-Core
541
+ - React-cxxreact
542
+ - React-debug
543
+ - React-graphics
544
+ - React-jsi
545
+ - React-jsiexecutor
546
+ - React-logger
547
+ - React-rendererdebug
548
+ - React-runtimescheduler
549
+ - React-utils
550
+ - ReactCommon/turbomodule/core
551
+ - React-Fabric/components/rncore (0.73.9):
552
+ - DoubleConversion
553
+ - fmt (~> 6.2.1)
554
+ - glog
555
+ - hermes-engine
556
+ - RCT-Folly/Fabric (= 2022.05.16.00)
557
+ - RCTRequired
558
+ - RCTTypeSafety
559
+ - React-Core
560
+ - React-cxxreact
561
+ - React-debug
562
+ - React-graphics
563
+ - React-jsi
564
+ - React-jsiexecutor
565
+ - React-logger
566
+ - React-rendererdebug
567
+ - React-runtimescheduler
568
+ - React-utils
569
+ - ReactCommon/turbomodule/core
570
+ - React-Fabric/components/root (0.73.9):
571
+ - DoubleConversion
572
+ - fmt (~> 6.2.1)
573
+ - glog
574
+ - hermes-engine
575
+ - RCT-Folly/Fabric (= 2022.05.16.00)
576
+ - RCTRequired
577
+ - RCTTypeSafety
578
+ - React-Core
579
+ - React-cxxreact
580
+ - React-debug
581
+ - React-graphics
582
+ - React-jsi
583
+ - React-jsiexecutor
584
+ - React-logger
585
+ - React-rendererdebug
586
+ - React-runtimescheduler
587
+ - React-utils
588
+ - ReactCommon/turbomodule/core
589
+ - React-Fabric/components/safeareaview (0.73.9):
590
+ - DoubleConversion
591
+ - fmt (~> 6.2.1)
592
+ - glog
593
+ - hermes-engine
594
+ - RCT-Folly/Fabric (= 2022.05.16.00)
595
+ - RCTRequired
596
+ - RCTTypeSafety
597
+ - React-Core
598
+ - React-cxxreact
599
+ - React-debug
600
+ - React-graphics
601
+ - React-jsi
602
+ - React-jsiexecutor
603
+ - React-logger
604
+ - React-rendererdebug
605
+ - React-runtimescheduler
606
+ - React-utils
607
+ - ReactCommon/turbomodule/core
608
+ - React-Fabric/components/scrollview (0.73.9):
609
+ - DoubleConversion
610
+ - fmt (~> 6.2.1)
611
+ - glog
612
+ - hermes-engine
613
+ - RCT-Folly/Fabric (= 2022.05.16.00)
614
+ - RCTRequired
615
+ - RCTTypeSafety
616
+ - React-Core
617
+ - React-cxxreact
618
+ - React-debug
619
+ - React-graphics
620
+ - React-jsi
621
+ - React-jsiexecutor
622
+ - React-logger
623
+ - React-rendererdebug
624
+ - React-runtimescheduler
625
+ - React-utils
626
+ - ReactCommon/turbomodule/core
627
+ - React-Fabric/components/text (0.73.9):
628
+ - DoubleConversion
629
+ - fmt (~> 6.2.1)
630
+ - glog
631
+ - hermes-engine
632
+ - RCT-Folly/Fabric (= 2022.05.16.00)
633
+ - RCTRequired
634
+ - RCTTypeSafety
635
+ - React-Core
636
+ - React-cxxreact
637
+ - React-debug
638
+ - React-graphics
639
+ - React-jsi
640
+ - React-jsiexecutor
641
+ - React-logger
642
+ - React-rendererdebug
643
+ - React-runtimescheduler
644
+ - React-utils
645
+ - ReactCommon/turbomodule/core
646
+ - React-Fabric/components/textinput (0.73.9):
647
+ - DoubleConversion
648
+ - fmt (~> 6.2.1)
649
+ - glog
650
+ - hermes-engine
651
+ - RCT-Folly/Fabric (= 2022.05.16.00)
652
+ - RCTRequired
653
+ - RCTTypeSafety
654
+ - React-Core
655
+ - React-cxxreact
656
+ - React-debug
657
+ - React-graphics
658
+ - React-jsi
659
+ - React-jsiexecutor
660
+ - React-logger
661
+ - React-rendererdebug
662
+ - React-runtimescheduler
663
+ - React-utils
664
+ - ReactCommon/turbomodule/core
665
+ - React-Fabric/components/unimplementedview (0.73.9):
666
+ - DoubleConversion
667
+ - fmt (~> 6.2.1)
668
+ - glog
669
+ - hermes-engine
670
+ - RCT-Folly/Fabric (= 2022.05.16.00)
671
+ - RCTRequired
672
+ - RCTTypeSafety
673
+ - React-Core
674
+ - React-cxxreact
675
+ - React-debug
676
+ - React-graphics
677
+ - React-jsi
678
+ - React-jsiexecutor
679
+ - React-logger
680
+ - React-rendererdebug
681
+ - React-runtimescheduler
682
+ - React-utils
683
+ - ReactCommon/turbomodule/core
684
+ - React-Fabric/components/view (0.73.9):
685
+ - DoubleConversion
686
+ - fmt (~> 6.2.1)
687
+ - glog
688
+ - hermes-engine
689
+ - RCT-Folly/Fabric (= 2022.05.16.00)
690
+ - RCTRequired
691
+ - RCTTypeSafety
692
+ - React-Core
693
+ - React-cxxreact
694
+ - React-debug
695
+ - React-graphics
696
+ - React-jsi
697
+ - React-jsiexecutor
698
+ - React-logger
699
+ - React-rendererdebug
700
+ - React-runtimescheduler
701
+ - React-utils
702
+ - ReactCommon/turbomodule/core
703
+ - Yoga
704
+ - React-Fabric/core (0.73.9):
705
+ - DoubleConversion
706
+ - fmt (~> 6.2.1)
707
+ - glog
708
+ - hermes-engine
709
+ - RCT-Folly/Fabric (= 2022.05.16.00)
710
+ - RCTRequired
711
+ - RCTTypeSafety
712
+ - React-Core
713
+ - React-cxxreact
714
+ - React-debug
715
+ - React-graphics
716
+ - React-jsi
717
+ - React-jsiexecutor
718
+ - React-logger
719
+ - React-rendererdebug
720
+ - React-runtimescheduler
721
+ - React-utils
722
+ - ReactCommon/turbomodule/core
723
+ - React-Fabric/imagemanager (0.73.9):
724
+ - DoubleConversion
725
+ - fmt (~> 6.2.1)
726
+ - glog
727
+ - hermes-engine
728
+ - RCT-Folly/Fabric (= 2022.05.16.00)
729
+ - RCTRequired
730
+ - RCTTypeSafety
731
+ - React-Core
732
+ - React-cxxreact
733
+ - React-debug
734
+ - React-graphics
735
+ - React-jsi
736
+ - React-jsiexecutor
737
+ - React-logger
738
+ - React-rendererdebug
739
+ - React-runtimescheduler
740
+ - React-utils
741
+ - ReactCommon/turbomodule/core
742
+ - React-Fabric/leakchecker (0.73.9):
743
+ - DoubleConversion
744
+ - fmt (~> 6.2.1)
745
+ - glog
746
+ - hermes-engine
747
+ - RCT-Folly/Fabric (= 2022.05.16.00)
748
+ - RCTRequired
749
+ - RCTTypeSafety
750
+ - React-Core
751
+ - React-cxxreact
752
+ - React-debug
753
+ - React-graphics
754
+ - React-jsi
755
+ - React-jsiexecutor
756
+ - React-logger
757
+ - React-rendererdebug
758
+ - React-runtimescheduler
759
+ - React-utils
760
+ - ReactCommon/turbomodule/core
761
+ - React-Fabric/mounting (0.73.9):
762
+ - DoubleConversion
763
+ - fmt (~> 6.2.1)
764
+ - glog
765
+ - hermes-engine
766
+ - RCT-Folly/Fabric (= 2022.05.16.00)
767
+ - RCTRequired
768
+ - RCTTypeSafety
769
+ - React-Core
770
+ - React-cxxreact
771
+ - React-debug
772
+ - React-graphics
773
+ - React-jsi
774
+ - React-jsiexecutor
775
+ - React-logger
776
+ - React-rendererdebug
777
+ - React-runtimescheduler
778
+ - React-utils
779
+ - ReactCommon/turbomodule/core
780
+ - React-Fabric/scheduler (0.73.9):
781
+ - DoubleConversion
782
+ - fmt (~> 6.2.1)
783
+ - glog
784
+ - hermes-engine
785
+ - RCT-Folly/Fabric (= 2022.05.16.00)
786
+ - RCTRequired
787
+ - RCTTypeSafety
788
+ - React-Core
789
+ - React-cxxreact
790
+ - React-debug
791
+ - React-graphics
792
+ - React-jsi
793
+ - React-jsiexecutor
794
+ - React-logger
795
+ - React-rendererdebug
796
+ - React-runtimescheduler
797
+ - React-utils
798
+ - ReactCommon/turbomodule/core
799
+ - React-Fabric/telemetry (0.73.9):
800
+ - DoubleConversion
801
+ - fmt (~> 6.2.1)
802
+ - glog
803
+ - hermes-engine
804
+ - RCT-Folly/Fabric (= 2022.05.16.00)
805
+ - RCTRequired
806
+ - RCTTypeSafety
807
+ - React-Core
808
+ - React-cxxreact
809
+ - React-debug
810
+ - React-graphics
811
+ - React-jsi
812
+ - React-jsiexecutor
813
+ - React-logger
814
+ - React-rendererdebug
815
+ - React-runtimescheduler
816
+ - React-utils
817
+ - ReactCommon/turbomodule/core
818
+ - React-Fabric/templateprocessor (0.73.9):
819
+ - DoubleConversion
820
+ - fmt (~> 6.2.1)
821
+ - glog
822
+ - hermes-engine
823
+ - RCT-Folly/Fabric (= 2022.05.16.00)
824
+ - RCTRequired
825
+ - RCTTypeSafety
826
+ - React-Core
827
+ - React-cxxreact
828
+ - React-debug
829
+ - React-graphics
830
+ - React-jsi
831
+ - React-jsiexecutor
832
+ - React-logger
833
+ - React-rendererdebug
834
+ - React-runtimescheduler
835
+ - React-utils
836
+ - ReactCommon/turbomodule/core
837
+ - React-Fabric/textlayoutmanager (0.73.9):
838
+ - DoubleConversion
839
+ - fmt (~> 6.2.1)
840
+ - glog
841
+ - hermes-engine
842
+ - RCT-Folly/Fabric (= 2022.05.16.00)
843
+ - RCTRequired
844
+ - RCTTypeSafety
845
+ - React-Core
846
+ - React-cxxreact
847
+ - React-debug
848
+ - React-Fabric/uimanager
849
+ - React-graphics
850
+ - React-jsi
851
+ - React-jsiexecutor
852
+ - React-logger
853
+ - React-rendererdebug
854
+ - React-runtimescheduler
855
+ - React-utils
856
+ - ReactCommon/turbomodule/core
857
+ - React-Fabric/uimanager (0.73.9):
858
+ - DoubleConversion
859
+ - fmt (~> 6.2.1)
860
+ - glog
861
+ - hermes-engine
862
+ - RCT-Folly/Fabric (= 2022.05.16.00)
863
+ - RCTRequired
864
+ - RCTTypeSafety
865
+ - React-Core
866
+ - React-cxxreact
867
+ - React-debug
868
+ - React-graphics
869
+ - React-jsi
870
+ - React-jsiexecutor
871
+ - React-logger
872
+ - React-rendererdebug
873
+ - React-runtimescheduler
874
+ - React-utils
875
+ - ReactCommon/turbomodule/core
876
+ - React-FabricImage (0.73.9):
877
+ - DoubleConversion
878
+ - fmt (~> 6.2.1)
879
+ - glog
880
+ - hermes-engine
881
+ - RCT-Folly/Fabric (= 2022.05.16.00)
882
+ - RCTRequired (= 0.73.9)
883
+ - RCTTypeSafety (= 0.73.9)
884
+ - React-Fabric
885
+ - React-graphics
886
+ - React-ImageManager
887
+ - React-jsi
888
+ - React-jsiexecutor (= 0.73.9)
889
+ - React-logger
890
+ - React-rendererdebug
891
+ - React-utils
892
+ - ReactCommon
893
+ - Yoga
894
+ - React-graphics (0.73.9):
895
+ - glog
896
+ - RCT-Folly/Fabric (= 2022.05.16.00)
897
+ - React-Core/Default (= 0.73.9)
898
+ - React-utils
899
+ - React-hermes (0.73.9):
900
+ - DoubleConversion
901
+ - fmt (~> 6.2.1)
902
+ - glog
903
+ - hermes-engine
904
+ - RCT-Folly (= 2022.05.16.00)
905
+ - RCT-Folly/Futures (= 2022.05.16.00)
906
+ - React-cxxreact (= 0.73.9)
907
+ - React-jsi
908
+ - React-jsiexecutor (= 0.73.9)
909
+ - React-jsinspector (= 0.73.9)
910
+ - React-perflogger (= 0.73.9)
911
+ - React-ImageManager (0.73.9):
912
+ - glog
913
+ - RCT-Folly/Fabric
914
+ - React-Core/Default
915
+ - React-debug
916
+ - React-Fabric
917
+ - React-graphics
918
+ - React-rendererdebug
919
+ - React-utils
920
+ - React-jserrorhandler (0.73.9):
921
+ - RCT-Folly/Fabric (= 2022.05.16.00)
922
+ - React-debug
923
+ - React-jsi
924
+ - React-Mapbuffer
925
+ - React-jsi (0.73.9):
926
+ - boost (= 1.83.0)
927
+ - DoubleConversion
928
+ - fmt (~> 6.2.1)
929
+ - glog
930
+ - hermes-engine
931
+ - RCT-Folly (= 2022.05.16.00)
932
+ - React-jsiexecutor (0.73.9):
933
+ - DoubleConversion
934
+ - fmt (~> 6.2.1)
935
+ - glog
936
+ - hermes-engine
937
+ - RCT-Folly (= 2022.05.16.00)
938
+ - React-cxxreact (= 0.73.9)
939
+ - React-jsi (= 0.73.9)
940
+ - React-perflogger (= 0.73.9)
941
+ - React-jsinspector (0.73.9)
942
+ - React-logger (0.73.9):
943
+ - glog
944
+ - React-Mapbuffer (0.73.9):
945
+ - glog
946
+ - React-debug
947
+ - React-nativeconfig (0.73.9)
948
+ - React-NativeModulesApple (0.73.9):
949
+ - glog
950
+ - hermes-engine
951
+ - React-callinvoker
952
+ - React-Core
953
+ - React-cxxreact
954
+ - React-jsi
955
+ - React-runtimeexecutor
956
+ - ReactCommon/turbomodule/bridging
957
+ - ReactCommon/turbomodule/core
958
+ - React-perflogger (0.73.9)
959
+ - React-RCTActionSheet (0.73.9):
960
+ - React-Core/RCTActionSheetHeaders (= 0.73.9)
961
+ - React-RCTAnimation (0.73.9):
962
+ - RCT-Folly (= 2022.05.16.00)
963
+ - RCTTypeSafety
964
+ - React-Codegen
965
+ - React-Core/RCTAnimationHeaders
966
+ - React-jsi
967
+ - React-NativeModulesApple
968
+ - ReactCommon
969
+ - React-RCTAppDelegate (0.73.9):
970
+ - RCT-Folly
971
+ - RCTRequired
972
+ - RCTTypeSafety
973
+ - React-Core
974
+ - React-CoreModules
975
+ - React-hermes
976
+ - React-nativeconfig
977
+ - React-NativeModulesApple
978
+ - React-RCTFabric
979
+ - React-RCTImage
980
+ - React-RCTNetwork
981
+ - React-runtimescheduler
982
+ - ReactCommon
983
+ - React-RCTBlob (0.73.9):
984
+ - hermes-engine
985
+ - RCT-Folly (= 2022.05.16.00)
986
+ - React-Codegen
987
+ - React-Core/RCTBlobHeaders
988
+ - React-Core/RCTWebSocket
989
+ - React-jsi
990
+ - React-NativeModulesApple
991
+ - React-RCTNetwork
992
+ - ReactCommon
993
+ - React-RCTFabric (0.73.9):
994
+ - glog
995
+ - hermes-engine
996
+ - RCT-Folly/Fabric (= 2022.05.16.00)
997
+ - React-Core
998
+ - React-debug
999
+ - React-Fabric
1000
+ - React-FabricImage
1001
+ - React-graphics
1002
+ - React-ImageManager
1003
+ - React-jsi
1004
+ - React-nativeconfig
1005
+ - React-RCTImage
1006
+ - React-RCTText
1007
+ - React-rendererdebug
1008
+ - React-runtimescheduler
1009
+ - React-utils
1010
+ - Yoga
1011
+ - React-RCTImage (0.73.9):
1012
+ - RCT-Folly (= 2022.05.16.00)
1013
+ - RCTTypeSafety
1014
+ - React-Codegen
1015
+ - React-Core/RCTImageHeaders
1016
+ - React-jsi
1017
+ - React-NativeModulesApple
1018
+ - React-RCTNetwork
1019
+ - ReactCommon
1020
+ - React-RCTLinking (0.73.9):
1021
+ - React-Codegen
1022
+ - React-Core/RCTLinkingHeaders (= 0.73.9)
1023
+ - React-jsi (= 0.73.9)
1024
+ - React-NativeModulesApple
1025
+ - ReactCommon
1026
+ - ReactCommon/turbomodule/core (= 0.73.9)
1027
+ - React-RCTNetwork (0.73.9):
1028
+ - RCT-Folly (= 2022.05.16.00)
1029
+ - RCTTypeSafety
1030
+ - React-Codegen
1031
+ - React-Core/RCTNetworkHeaders
1032
+ - React-jsi
1033
+ - React-NativeModulesApple
1034
+ - ReactCommon
1035
+ - React-RCTSettings (0.73.9):
1036
+ - RCT-Folly (= 2022.05.16.00)
1037
+ - RCTTypeSafety
1038
+ - React-Codegen
1039
+ - React-Core/RCTSettingsHeaders
1040
+ - React-jsi
1041
+ - React-NativeModulesApple
1042
+ - ReactCommon
1043
+ - React-RCTText (0.73.9):
1044
+ - React-Core/RCTTextHeaders (= 0.73.9)
1045
+ - Yoga
1046
+ - React-RCTVibration (0.73.9):
1047
+ - RCT-Folly (= 2022.05.16.00)
1048
+ - React-Codegen
1049
+ - React-Core/RCTVibrationHeaders
1050
+ - React-jsi
1051
+ - React-NativeModulesApple
1052
+ - ReactCommon
1053
+ - React-rendererdebug (0.73.9):
1054
+ - DoubleConversion
1055
+ - fmt (~> 6.2.1)
1056
+ - RCT-Folly (= 2022.05.16.00)
1057
+ - React-debug
1058
+ - React-rncore (0.73.9)
1059
+ - React-runtimeexecutor (0.73.9):
1060
+ - React-jsi (= 0.73.9)
1061
+ - React-runtimescheduler (0.73.9):
1062
+ - glog
1063
+ - hermes-engine
1064
+ - RCT-Folly (= 2022.05.16.00)
1065
+ - React-callinvoker
1066
+ - React-cxxreact
1067
+ - React-debug
1068
+ - React-jsi
1069
+ - React-rendererdebug
1070
+ - React-runtimeexecutor
1071
+ - React-utils
1072
+ - React-utils (0.73.9):
1073
+ - glog
1074
+ - RCT-Folly (= 2022.05.16.00)
1075
+ - React-debug
1076
+ - ReactCommon (0.73.9):
1077
+ - React-logger (= 0.73.9)
1078
+ - ReactCommon/turbomodule (= 0.73.9)
1079
+ - ReactCommon/turbomodule (0.73.9):
1080
+ - DoubleConversion
1081
+ - fmt (~> 6.2.1)
1082
+ - glog
1083
+ - hermes-engine
1084
+ - RCT-Folly (= 2022.05.16.00)
1085
+ - React-callinvoker (= 0.73.9)
1086
+ - React-cxxreact (= 0.73.9)
1087
+ - React-jsi (= 0.73.9)
1088
+ - React-logger (= 0.73.9)
1089
+ - React-perflogger (= 0.73.9)
1090
+ - ReactCommon/turbomodule/bridging (= 0.73.9)
1091
+ - ReactCommon/turbomodule/core (= 0.73.9)
1092
+ - ReactCommon/turbomodule/bridging (0.73.9):
1093
+ - DoubleConversion
1094
+ - fmt (~> 6.2.1)
1095
+ - glog
1096
+ - hermes-engine
1097
+ - RCT-Folly (= 2022.05.16.00)
1098
+ - React-callinvoker (= 0.73.9)
1099
+ - React-cxxreact (= 0.73.9)
1100
+ - React-jsi (= 0.73.9)
1101
+ - React-logger (= 0.73.9)
1102
+ - React-perflogger (= 0.73.9)
1103
+ - ReactCommon/turbomodule/core (0.73.9):
1104
+ - DoubleConversion
1105
+ - fmt (~> 6.2.1)
1106
+ - glog
1107
+ - hermes-engine
1108
+ - RCT-Folly (= 2022.05.16.00)
1109
+ - React-callinvoker (= 0.73.9)
1110
+ - React-cxxreact (= 0.73.9)
1111
+ - React-jsi (= 0.73.9)
1112
+ - React-logger (= 0.73.9)
1113
+ - React-perflogger (= 0.73.9)
1114
+ - RNSVG (15.5.0):
1115
+ - React-Core
1116
+ - SocketRocket (0.6.1)
1117
+ - Yoga (1.14.0)
1118
+
1119
+ DEPENDENCIES:
1120
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1121
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1122
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1123
+ - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
1124
+ - Flipper (= 0.201.0)
1125
+ - Flipper-Boost-iOSX (= 1.76.0.1.11)
1126
+ - Flipper-DoubleConversion (= 3.2.0.1)
1127
+ - Flipper-Fmt (= 7.1.7)
1128
+ - Flipper-Folly (= 2.6.10)
1129
+ - Flipper-Glog (= 0.5.0.5)
1130
+ - Flipper-PeerTalk (= 0.0.4)
1131
+ - FlipperKit (= 0.201.0)
1132
+ - FlipperKit/Core (= 0.201.0)
1133
+ - FlipperKit/CppBridge (= 0.201.0)
1134
+ - FlipperKit/FBCxxFollyDynamicConvert (= 0.201.0)
1135
+ - FlipperKit/FBDefines (= 0.201.0)
1136
+ - FlipperKit/FKPortForwarding (= 0.201.0)
1137
+ - FlipperKit/FlipperKitHighlightOverlay (= 0.201.0)
1138
+ - FlipperKit/FlipperKitLayoutPlugin (= 0.201.0)
1139
+ - FlipperKit/FlipperKitLayoutTextSearchable (= 0.201.0)
1140
+ - FlipperKit/FlipperKitNetworkPlugin (= 0.201.0)
1141
+ - FlipperKit/FlipperKitReactPlugin (= 0.201.0)
1142
+ - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.201.0)
1143
+ - FlipperKit/SKIOSNetworkPlugin (= 0.201.0)
1144
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1145
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1146
+ - libevent (~> 2.1.12)
1147
+ - OpenSSL-Universal (= 1.1.1100)
1148
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1149
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1150
+ - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
1151
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1152
+ - React (from `../node_modules/react-native/`)
1153
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1154
+ - React-Codegen (from `build/generated/ios`)
1155
+ - React-Core (from `../node_modules/react-native/`)
1156
+ - React-Core/DevSupport (from `../node_modules/react-native/`)
1157
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1158
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1159
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1160
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1161
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1162
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1163
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1164
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1165
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1166
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1167
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1168
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1169
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1170
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1171
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1172
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1173
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1174
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1175
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1176
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1177
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1178
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1179
+ - React-RCTFabric (from `../node_modules/react-native/React`)
1180
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1181
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1182
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1183
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1184
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1185
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1186
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1187
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
1188
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1189
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1190
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1191
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1192
+ - RNSVG (from `../node_modules/react-native-svg`)
1193
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1194
+
1195
+ SPEC REPOS:
1196
+ trunk:
1197
+ - CocoaAsyncSocket
1198
+ - Flipper
1199
+ - Flipper-Boost-iOSX
1200
+ - Flipper-DoubleConversion
1201
+ - Flipper-Fmt
1202
+ - Flipper-Folly
1203
+ - Flipper-Glog
1204
+ - Flipper-PeerTalk
1205
+ - FlipperKit
1206
+ - fmt
1207
+ - libevent
1208
+ - OpenSSL-Universal
1209
+ - SocketRocket
1210
+
1211
+ EXTERNAL SOURCES:
1212
+ boost:
1213
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1214
+ DoubleConversion:
1215
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1216
+ FBLazyVector:
1217
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
1218
+ FBReactNativeSpec:
1219
+ :path: "../node_modules/react-native/React/FBReactNativeSpec"
1220
+ glog:
1221
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1222
+ hermes-engine:
1223
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1224
+ :tag: hermes-2024-04-29-RNv0.73.8-644c8be78af1eae7c138fa4093fb87f0f4f8db85
1225
+ RCT-Folly:
1226
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1227
+ RCTRequired:
1228
+ :path: "../node_modules/react-native/Libraries/RCTRequired"
1229
+ RCTTypeSafety:
1230
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
1231
+ React:
1232
+ :path: "../node_modules/react-native/"
1233
+ React-callinvoker:
1234
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
1235
+ React-Codegen:
1236
+ :path: build/generated/ios
1237
+ React-Core:
1238
+ :path: "../node_modules/react-native/"
1239
+ React-CoreModules:
1240
+ :path: "../node_modules/react-native/React/CoreModules"
1241
+ React-cxxreact:
1242
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
1243
+ React-debug:
1244
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
1245
+ React-Fabric:
1246
+ :path: "../node_modules/react-native/ReactCommon"
1247
+ React-FabricImage:
1248
+ :path: "../node_modules/react-native/ReactCommon"
1249
+ React-graphics:
1250
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1251
+ React-hermes:
1252
+ :path: "../node_modules/react-native/ReactCommon/hermes"
1253
+ React-ImageManager:
1254
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1255
+ React-jserrorhandler:
1256
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1257
+ React-jsi:
1258
+ :path: "../node_modules/react-native/ReactCommon/jsi"
1259
+ React-jsiexecutor:
1260
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1261
+ React-jsinspector:
1262
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1263
+ React-logger:
1264
+ :path: "../node_modules/react-native/ReactCommon/logger"
1265
+ React-Mapbuffer:
1266
+ :path: "../node_modules/react-native/ReactCommon"
1267
+ React-nativeconfig:
1268
+ :path: "../node_modules/react-native/ReactCommon"
1269
+ React-NativeModulesApple:
1270
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1271
+ React-perflogger:
1272
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1273
+ React-RCTActionSheet:
1274
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1275
+ React-RCTAnimation:
1276
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
1277
+ React-RCTAppDelegate:
1278
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
1279
+ React-RCTBlob:
1280
+ :path: "../node_modules/react-native/Libraries/Blob"
1281
+ React-RCTFabric:
1282
+ :path: "../node_modules/react-native/React"
1283
+ React-RCTImage:
1284
+ :path: "../node_modules/react-native/Libraries/Image"
1285
+ React-RCTLinking:
1286
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
1287
+ React-RCTNetwork:
1288
+ :path: "../node_modules/react-native/Libraries/Network"
1289
+ React-RCTSettings:
1290
+ :path: "../node_modules/react-native/Libraries/Settings"
1291
+ React-RCTText:
1292
+ :path: "../node_modules/react-native/Libraries/Text"
1293
+ React-RCTVibration:
1294
+ :path: "../node_modules/react-native/Libraries/Vibration"
1295
+ React-rendererdebug:
1296
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1297
+ React-rncore:
1298
+ :path: "../node_modules/react-native/ReactCommon"
1299
+ React-runtimeexecutor:
1300
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1301
+ React-runtimescheduler:
1302
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1303
+ React-utils:
1304
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
1305
+ ReactCommon:
1306
+ :path: "../node_modules/react-native/ReactCommon"
1307
+ RNSVG:
1308
+ :path: "../node_modules/react-native-svg"
1309
+ Yoga:
1310
+ :path: "../node_modules/react-native/ReactCommon/yoga"
1311
+
1312
+ SPEC CHECKSUMS:
1313
+ boost: d3f49c53809116a5d38da093a8aa78bf551aed09
1314
+ CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
1315
+ DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
1316
+ FBLazyVector: 98c189b92292d4bfeac13ffa8df3ce3d84e2fc5b
1317
+ FBReactNativeSpec: 4fe1d8c2fadc7949344b197d933f76b40401aac5
1318
+ Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44
1319
+ Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
1320
+ Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
1321
+ Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
1322
+ Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
1323
+ Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
1324
+ Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
1325
+ FlipperKit: 37525a5d056ef9b93d1578e04bc3ea1de940094f
1326
+ fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
1327
+ glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
1328
+ hermes-engine: ed62e0dcd013bf4a3b487f164feec1c4e705b5b5
1329
+ libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
1330
+ OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
1331
+ RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0
1332
+ RCTRequired: d362a61864a64315aee00faea8dee6cf5b3f4aad
1333
+ RCTTypeSafety: 09baf60faeab02492dc8bf04ce5af1dda645b86d
1334
+ React: b87c7c7c12f8232bd7cfdc4a00bf687144c17e30
1335
+ React-callinvoker: 67de0bc05ecb7e690345a53a1661cea9b24670b0
1336
+ React-Codegen: d4acea6cf2a7889c042653eaff9233b1d6c4d3c3
1337
+ React-Core: 4c87a1873c6d11c6d3843582fbc266ba9ea304ce
1338
+ React-CoreModules: 29ad1cbe757a70575913457bb7c646b7f4d4edf0
1339
+ React-cxxreact: 08ffaf2def6fe1ec8ef7f16e208587c96a87978e
1340
+ React-debug: 937e24adc0479b9bbed3f1b7e0db68688d93c31c
1341
+ React-Fabric: 1e2eb26de25f2629350beaab7abc3623becce2b7
1342
+ React-FabricImage: 5791bf14ff0550f26b81be575e9a10f1f3c69688
1343
+ React-graphics: 3ba4dba54c4d1426118089f1943708ef0bba8a84
1344
+ React-hermes: fdaab14cc289d8d9cd45ffd9a3f8aa11157d4c7e
1345
+ React-ImageManager: 13b4aebbffd9addbcd79d1687355db2f6d8a37e2
1346
+ React-jserrorhandler: f30af3ec30fdc04a4b080c5b1f3defb801c0c861
1347
+ React-jsi: 2253621cb2fb5d43a78fec4db8989cf9711039df
1348
+ React-jsiexecutor: 5e4620a87fbc4ab174d75220f06ba8b53ae8317b
1349
+ React-jsinspector: aee04d04ef553d5e30e52a4de2af958cb060069f
1350
+ React-logger: 87a4232dd55485435edfa6803ff0de0b5c9eea1a
1351
+ React-Mapbuffer: 6c229dc8f1640457d1f665f0b7d79ab8f604dc8b
1352
+ React-nativeconfig: c1729ab95240ec80d47a2bb8354d8f31138e35a7
1353
+ React-NativeModulesApple: 115c934a87f3b45fecb0fada08fa70bab3dff65c
1354
+ React-perflogger: c93b6a895eca3f9196656bb20ce0e15ad597a4e9
1355
+ React-RCTActionSheet: 258842f426709dccbc2af31ca42b0a1807d76ad7
1356
+ React-RCTAnimation: 78c40269e35864f541b7486d17bd82a353c99fbc
1357
+ React-RCTAppDelegate: d98ec2cdfb161d7a8496990e9649f94018025922
1358
+ React-RCTBlob: 593a5dbc58c45e3cccc37ad4498b10766ace26e6
1359
+ React-RCTFabric: e6060e78040264f8a542bb8631ae1bbfd5a882ed
1360
+ React-RCTImage: a0cdbb81db012ebc42c7dbaabdcb15f488c7c391
1361
+ React-RCTLinking: 82b6b0a5b2d5c8d3a28997e70bda46bac4be4c6e
1362
+ React-RCTNetwork: 45e30079bcb987724028c9a93c0110b6d82e4a1f
1363
+ React-RCTSettings: e67cbe694fe45b080b96b1394d4e45dff1b3ae04
1364
+ React-RCTText: 14a54686a1fa0b51b76660c7700980fdec6c3093
1365
+ React-RCTVibration: 00561f3d12dca44ed55af9060752bf8cf3fb0bfc
1366
+ React-rendererdebug: 975f3e6e430ba1a9b92dc44bc99757cb1c6cae60
1367
+ React-rncore: e7dc772ade687746b8a8a38985b4512b8d232637
1368
+ React-runtimeexecutor: bf98e8973ed4c45139fbbaf2c34af44053acc9a9
1369
+ React-runtimescheduler: efb26ad81d94a9b047504bd716b48869bd311649
1370
+ React-utils: dab84549e65d6d711937b9c34d9f6d8fb8bd711c
1371
+ ReactCommon: 3dc453f427d2f3d7f2c71499d191b456f83c59bd
1372
+ RNSVG: b986585e367f4a49d8aa43065066cc9c290b3d9b
1373
+ SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
1374
+ Yoga: 57d2ffe418d024d56f8b0047f335c677e4c4d9ac
1375
+
1376
+ PODFILE CHECKSUM: 5506db2064b9bbcf95b89a76274d9998b06e711d
1377
+
1378
+ COCOAPODS: 1.15.2