@oguzhnatly/react-native-image-manipulator 1.0.5 → 1.0.13

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