@moustafahelmi/react-native-quran-app 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/.bundle/config +2 -0
  2. package/.eslintrc.js +4 -0
  3. package/.prettierrc.js +7 -0
  4. package/.watchmanconfig +1 -0
  5. package/App.tsx +23 -0
  6. package/Gemfile +9 -0
  7. package/Gemfile.lock +105 -0
  8. package/MIGRATION.md +163 -0
  9. package/README.md +210 -0
  10. package/ReactotronConfig.js +7 -0
  11. package/__tests__/App.test.tsx +17 -0
  12. package/android/app/build.gradle +118 -0
  13. package/android/app/debug.keystore +0 -0
  14. package/android/app/proguard-rules.pro +10 -0
  15. package/android/app/src/debug/AndroidManifest.xml +9 -0
  16. package/android/app/src/main/AndroidManifest.xml +25 -0
  17. package/android/app/src/main/assets/fonts/Cairo.ttf +0 -0
  18. package/android/app/src/main/assets/fonts/QCF_BSML.ttf +0 -0
  19. package/android/app/src/main/assets/fonts/QCF_P001.ttf +0 -0
  20. package/android/app/src/main/java/com/quranapp/MainActivity.kt +22 -0
  21. package/android/app/src/main/java/com/quranapp/MainApplication.kt +43 -0
  22. package/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  23. package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  24. package/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  25. package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  26. package/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  27. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  28. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  29. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  30. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  31. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  32. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  33. package/android/app/src/main/res/values/strings.xml +3 -0
  34. package/android/app/src/main/res/values/styles.xml +9 -0
  35. package/android/build.gradle +21 -0
  36. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  37. package/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  38. package/android/gradle.properties +41 -0
  39. package/android/gradlew +249 -0
  40. package/android/gradlew.bat +92 -0
  41. package/android/link-assets-manifest.json +17 -0
  42. package/android/settings.gradle +4 -0
  43. package/app.json +4 -0
  44. package/babel.config.js +3 -0
  45. package/index.js +11 -0
  46. package/ios/.xcode.env +11 -0
  47. package/ios/Podfile +40 -0
  48. package/ios/Podfile.lock +1460 -0
  49. package/ios/QuranApp/AppDelegate.h +6 -0
  50. package/ios/QuranApp/AppDelegate.mm +31 -0
  51. package/ios/QuranApp/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  52. package/ios/QuranApp/Images.xcassets/Contents.json +6 -0
  53. package/ios/QuranApp/Info.plist +57 -0
  54. package/ios/QuranApp/LaunchScreen.storyboard +47 -0
  55. package/ios/QuranApp/PrivacyInfo.xcprivacy +38 -0
  56. package/ios/QuranApp/main.m +10 -0
  57. package/ios/QuranApp.xcodeproj/project.pbxproj +729 -0
  58. package/ios/QuranApp.xcodeproj/xcshareddata/xcschemes/QuranApp.xcscheme +88 -0
  59. package/ios/QuranApp.xcworkspace/contents.xcworkspacedata +10 -0
  60. package/ios/QuranAppTests/Info.plist +24 -0
  61. package/ios/QuranAppTests/QuranAppTests.m +66 -0
  62. package/ios/link-assets-manifest.json +17 -0
  63. package/jest.config.js +3 -0
  64. package/metro.config.js +11 -0
  65. package/package.json +54 -0
  66. package/react-native.config.js +7 -0
  67. package/screenshots/1.png +0 -0
  68. package/screenshots/2.png +0 -0
  69. package/screenshots/3.png +0 -0
  70. package/screenshots/4.png +0 -0
  71. package/screenshots/5.png +0 -0
  72. package/src/assets/fonts/Cairo.ttf +0 -0
  73. package/src/assets/fonts/QCF_BSML.ttf +0 -0
  74. package/src/assets/fonts/QCF_P001.ttf +0 -0
  75. package/src/assets/images/bookmark.png +0 -0
  76. package/src/assets/images/close.png +0 -0
  77. package/src/assets/images/copy.png +0 -0
  78. package/src/assets/images/down-chevron.png +0 -0
  79. package/src/assets/images/mushafFrame.png +0 -0
  80. package/src/assets/images/pause.png +0 -0
  81. package/src/assets/images/play-button.png +0 -0
  82. package/src/assets/images/play.svg +16 -0
  83. package/src/assets/images/playNext.png +0 -0
  84. package/src/assets/images/surahNameFrame.png +0 -0
  85. package/src/common/chapters.ts +1346 -0
  86. package/src/common/constants.ts +27 -0
  87. package/src/common/images.ts +13 -0
  88. package/src/common/index.ts +8 -0
  89. package/src/common/juzs.ts +411 -0
  90. package/src/common/priorityPages.ts +46 -0
  91. package/src/common/themes.ts +7 -0
  92. package/src/components/index.ts +3 -0
  93. package/src/components/lists/index.ts +3 -0
  94. package/src/components/lists/pageVersesList.tsx +220 -0
  95. package/src/components/lists/verseLinesWordsList.tsx +90 -0
  96. package/src/components/modals/index.ts +3 -0
  97. package/src/components/modals/optionsModal.tsx +126 -0
  98. package/src/components/modals/recitersModal.tsx +118 -0
  99. package/src/components/sections/audioPlayer.tsx +185 -0
  100. package/src/components/sections/audioPlayerControls.tsx +100 -0
  101. package/src/components/sections/index.ts +4 -0
  102. package/src/components/sections/loader.tsx +33 -0
  103. package/src/helpers/index.ts +1 -0
  104. package/src/helpers/quranHelpers.tsx +17 -0
  105. package/src/hooks/apis/index.ts +10 -0
  106. package/src/hooks/apis/useGetChapterAudio.ts +111 -0
  107. package/src/hooks/apis/useGetChapterByPage.ts +166 -0
  108. package/src/hooks/apis/useGetChapterLookup.ts +31 -0
  109. package/src/hooks/apis/useGetReciters.ts +44 -0
  110. package/src/hooks/controllers/index.ts +25 -0
  111. package/src/hooks/controllers/useAudioPlayerController.tsx +63 -0
  112. package/src/hooks/controllers/useOptionsModalController.ts +99 -0
  113. package/src/hooks/controllers/usePageFontFileController.ts +255 -0
  114. package/src/hooks/controllers/usePageLineController.ts +108 -0
  115. package/src/hooks/helpers/index.ts +6 -0
  116. package/src/hooks/helpers/useQuranFontPreloader.ts +225 -0
  117. package/src/hooks/index.ts +3 -0
  118. package/src/index.ts +5 -0
  119. package/src/layouts/bismillahText.tsx +18 -0
  120. package/src/layouts/index.ts +4 -0
  121. package/src/layouts/quranChapterHeader.tsx +49 -0
  122. package/src/layouts/quranPageLayout.tsx +178 -0
  123. package/src/types/global.d.ts +7 -0
  124. package/src/types/index.ts +212 -0
  125. package/src/utils/axiosInstance.ts +7 -0
  126. package/src/utils/fileHandlers.ts +96 -0
  127. package/src/utils/handleBeforeAndAfterCurrentVerse.ts +41 -0
  128. package/src/utils/index.ts +6 -0
  129. package/src/utils/matrics.ts +37 -0
  130. package/tsconfig.json +3 -0
  131. package/videos/1.gif +0 -0
@@ -0,0 +1,1460 @@
1
+ PODS:
2
+ - boost (1.83.0)
3
+ - DoubleConversion (1.1.6)
4
+ - DynamicFonts (0.3.2):
5
+ - React
6
+ - FBLazyVector (0.74.0)
7
+ - fmt (9.1.0)
8
+ - glog (0.3.5)
9
+ - hermes-engine (0.74.0):
10
+ - hermes-engine/Pre-built (= 0.74.0)
11
+ - hermes-engine/Pre-built (0.74.0)
12
+ - RCT-Folly (2024.01.01.00):
13
+ - boost
14
+ - DoubleConversion
15
+ - fmt (= 9.1.0)
16
+ - glog
17
+ - RCT-Folly/Default (= 2024.01.01.00)
18
+ - RCT-Folly/Default (2024.01.01.00):
19
+ - boost
20
+ - DoubleConversion
21
+ - fmt (= 9.1.0)
22
+ - glog
23
+ - RCT-Folly/Fabric (2024.01.01.00):
24
+ - boost
25
+ - DoubleConversion
26
+ - fmt (= 9.1.0)
27
+ - glog
28
+ - RCTDeprecation (0.74.0)
29
+ - RCTRequired (0.74.0)
30
+ - RCTTypeSafety (0.74.0):
31
+ - FBLazyVector (= 0.74.0)
32
+ - RCTRequired (= 0.74.0)
33
+ - React-Core (= 0.74.0)
34
+ - React (0.74.0):
35
+ - React-Core (= 0.74.0)
36
+ - React-Core/DevSupport (= 0.74.0)
37
+ - React-Core/RCTWebSocket (= 0.74.0)
38
+ - React-RCTActionSheet (= 0.74.0)
39
+ - React-RCTAnimation (= 0.74.0)
40
+ - React-RCTBlob (= 0.74.0)
41
+ - React-RCTImage (= 0.74.0)
42
+ - React-RCTLinking (= 0.74.0)
43
+ - React-RCTNetwork (= 0.74.0)
44
+ - React-RCTSettings (= 0.74.0)
45
+ - React-RCTText (= 0.74.0)
46
+ - React-RCTVibration (= 0.74.0)
47
+ - React-callinvoker (0.74.0)
48
+ - React-Codegen (0.74.0):
49
+ - DoubleConversion
50
+ - glog
51
+ - hermes-engine
52
+ - RCT-Folly
53
+ - RCTRequired
54
+ - RCTTypeSafety
55
+ - React-Core
56
+ - React-debug
57
+ - React-Fabric
58
+ - React-FabricImage
59
+ - React-featureflags
60
+ - React-graphics
61
+ - React-jsi
62
+ - React-jsiexecutor
63
+ - React-NativeModulesApple
64
+ - React-rendererdebug
65
+ - React-utils
66
+ - ReactCommon/turbomodule/bridging
67
+ - ReactCommon/turbomodule/core
68
+ - React-Core (0.74.0):
69
+ - glog
70
+ - hermes-engine
71
+ - RCT-Folly (= 2024.01.01.00)
72
+ - RCTDeprecation
73
+ - React-Core/Default (= 0.74.0)
74
+ - React-cxxreact
75
+ - React-featureflags
76
+ - React-hermes
77
+ - React-jsi
78
+ - React-jsiexecutor
79
+ - React-jsinspector
80
+ - React-perflogger
81
+ - React-runtimescheduler
82
+ - React-utils
83
+ - SocketRocket (= 0.7.0)
84
+ - Yoga
85
+ - React-Core/CoreModulesHeaders (0.74.0):
86
+ - glog
87
+ - hermes-engine
88
+ - RCT-Folly (= 2024.01.01.00)
89
+ - RCTDeprecation
90
+ - React-Core/Default
91
+ - React-cxxreact
92
+ - React-featureflags
93
+ - React-hermes
94
+ - React-jsi
95
+ - React-jsiexecutor
96
+ - React-jsinspector
97
+ - React-perflogger
98
+ - React-runtimescheduler
99
+ - React-utils
100
+ - SocketRocket (= 0.7.0)
101
+ - Yoga
102
+ - React-Core/Default (0.74.0):
103
+ - glog
104
+ - hermes-engine
105
+ - RCT-Folly (= 2024.01.01.00)
106
+ - RCTDeprecation
107
+ - React-cxxreact
108
+ - React-featureflags
109
+ - React-hermes
110
+ - React-jsi
111
+ - React-jsiexecutor
112
+ - React-jsinspector
113
+ - React-perflogger
114
+ - React-runtimescheduler
115
+ - React-utils
116
+ - SocketRocket (= 0.7.0)
117
+ - Yoga
118
+ - React-Core/DevSupport (0.74.0):
119
+ - glog
120
+ - hermes-engine
121
+ - RCT-Folly (= 2024.01.01.00)
122
+ - RCTDeprecation
123
+ - React-Core/Default (= 0.74.0)
124
+ - React-Core/RCTWebSocket (= 0.74.0)
125
+ - React-cxxreact
126
+ - React-featureflags
127
+ - React-hermes
128
+ - React-jsi
129
+ - React-jsiexecutor
130
+ - React-jsinspector
131
+ - React-perflogger
132
+ - React-runtimescheduler
133
+ - React-utils
134
+ - SocketRocket (= 0.7.0)
135
+ - Yoga
136
+ - React-Core/RCTActionSheetHeaders (0.74.0):
137
+ - glog
138
+ - hermes-engine
139
+ - RCT-Folly (= 2024.01.01.00)
140
+ - RCTDeprecation
141
+ - React-Core/Default
142
+ - React-cxxreact
143
+ - React-featureflags
144
+ - React-hermes
145
+ - React-jsi
146
+ - React-jsiexecutor
147
+ - React-jsinspector
148
+ - React-perflogger
149
+ - React-runtimescheduler
150
+ - React-utils
151
+ - SocketRocket (= 0.7.0)
152
+ - Yoga
153
+ - React-Core/RCTAnimationHeaders (0.74.0):
154
+ - glog
155
+ - hermes-engine
156
+ - RCT-Folly (= 2024.01.01.00)
157
+ - RCTDeprecation
158
+ - React-Core/Default
159
+ - React-cxxreact
160
+ - React-featureflags
161
+ - React-hermes
162
+ - React-jsi
163
+ - React-jsiexecutor
164
+ - React-jsinspector
165
+ - React-perflogger
166
+ - React-runtimescheduler
167
+ - React-utils
168
+ - SocketRocket (= 0.7.0)
169
+ - Yoga
170
+ - React-Core/RCTBlobHeaders (0.74.0):
171
+ - glog
172
+ - hermes-engine
173
+ - RCT-Folly (= 2024.01.01.00)
174
+ - RCTDeprecation
175
+ - React-Core/Default
176
+ - React-cxxreact
177
+ - React-featureflags
178
+ - React-hermes
179
+ - React-jsi
180
+ - React-jsiexecutor
181
+ - React-jsinspector
182
+ - React-perflogger
183
+ - React-runtimescheduler
184
+ - React-utils
185
+ - SocketRocket (= 0.7.0)
186
+ - Yoga
187
+ - React-Core/RCTImageHeaders (0.74.0):
188
+ - glog
189
+ - hermes-engine
190
+ - RCT-Folly (= 2024.01.01.00)
191
+ - RCTDeprecation
192
+ - React-Core/Default
193
+ - React-cxxreact
194
+ - React-featureflags
195
+ - React-hermes
196
+ - React-jsi
197
+ - React-jsiexecutor
198
+ - React-jsinspector
199
+ - React-perflogger
200
+ - React-runtimescheduler
201
+ - React-utils
202
+ - SocketRocket (= 0.7.0)
203
+ - Yoga
204
+ - React-Core/RCTLinkingHeaders (0.74.0):
205
+ - glog
206
+ - hermes-engine
207
+ - RCT-Folly (= 2024.01.01.00)
208
+ - RCTDeprecation
209
+ - React-Core/Default
210
+ - React-cxxreact
211
+ - React-featureflags
212
+ - React-hermes
213
+ - React-jsi
214
+ - React-jsiexecutor
215
+ - React-jsinspector
216
+ - React-perflogger
217
+ - React-runtimescheduler
218
+ - React-utils
219
+ - SocketRocket (= 0.7.0)
220
+ - Yoga
221
+ - React-Core/RCTNetworkHeaders (0.74.0):
222
+ - glog
223
+ - hermes-engine
224
+ - RCT-Folly (= 2024.01.01.00)
225
+ - RCTDeprecation
226
+ - React-Core/Default
227
+ - React-cxxreact
228
+ - React-featureflags
229
+ - React-hermes
230
+ - React-jsi
231
+ - React-jsiexecutor
232
+ - React-jsinspector
233
+ - React-perflogger
234
+ - React-runtimescheduler
235
+ - React-utils
236
+ - SocketRocket (= 0.7.0)
237
+ - Yoga
238
+ - React-Core/RCTSettingsHeaders (0.74.0):
239
+ - glog
240
+ - hermes-engine
241
+ - RCT-Folly (= 2024.01.01.00)
242
+ - RCTDeprecation
243
+ - React-Core/Default
244
+ - React-cxxreact
245
+ - React-featureflags
246
+ - React-hermes
247
+ - React-jsi
248
+ - React-jsiexecutor
249
+ - React-jsinspector
250
+ - React-perflogger
251
+ - React-runtimescheduler
252
+ - React-utils
253
+ - SocketRocket (= 0.7.0)
254
+ - Yoga
255
+ - React-Core/RCTTextHeaders (0.74.0):
256
+ - glog
257
+ - hermes-engine
258
+ - RCT-Folly (= 2024.01.01.00)
259
+ - RCTDeprecation
260
+ - React-Core/Default
261
+ - React-cxxreact
262
+ - React-featureflags
263
+ - React-hermes
264
+ - React-jsi
265
+ - React-jsiexecutor
266
+ - React-jsinspector
267
+ - React-perflogger
268
+ - React-runtimescheduler
269
+ - React-utils
270
+ - SocketRocket (= 0.7.0)
271
+ - Yoga
272
+ - React-Core/RCTVibrationHeaders (0.74.0):
273
+ - glog
274
+ - hermes-engine
275
+ - RCT-Folly (= 2024.01.01.00)
276
+ - RCTDeprecation
277
+ - React-Core/Default
278
+ - React-cxxreact
279
+ - React-featureflags
280
+ - React-hermes
281
+ - React-jsi
282
+ - React-jsiexecutor
283
+ - React-jsinspector
284
+ - React-perflogger
285
+ - React-runtimescheduler
286
+ - React-utils
287
+ - SocketRocket (= 0.7.0)
288
+ - Yoga
289
+ - React-Core/RCTWebSocket (0.74.0):
290
+ - glog
291
+ - hermes-engine
292
+ - RCT-Folly (= 2024.01.01.00)
293
+ - RCTDeprecation
294
+ - React-Core/Default (= 0.74.0)
295
+ - React-cxxreact
296
+ - React-featureflags
297
+ - React-hermes
298
+ - React-jsi
299
+ - React-jsiexecutor
300
+ - React-jsinspector
301
+ - React-perflogger
302
+ - React-runtimescheduler
303
+ - React-utils
304
+ - SocketRocket (= 0.7.0)
305
+ - Yoga
306
+ - React-CoreModules (0.74.0):
307
+ - DoubleConversion
308
+ - fmt (= 9.1.0)
309
+ - RCT-Folly (= 2024.01.01.00)
310
+ - RCTTypeSafety (= 0.74.0)
311
+ - React-Codegen
312
+ - React-Core/CoreModulesHeaders (= 0.74.0)
313
+ - React-jsi (= 0.74.0)
314
+ - React-jsinspector
315
+ - React-NativeModulesApple
316
+ - React-RCTBlob
317
+ - React-RCTImage (= 0.74.0)
318
+ - ReactCommon
319
+ - SocketRocket (= 0.7.0)
320
+ - React-cxxreact (0.74.0):
321
+ - boost (= 1.83.0)
322
+ - DoubleConversion
323
+ - fmt (= 9.1.0)
324
+ - glog
325
+ - hermes-engine
326
+ - RCT-Folly (= 2024.01.01.00)
327
+ - React-callinvoker (= 0.74.0)
328
+ - React-debug (= 0.74.0)
329
+ - React-jsi (= 0.74.0)
330
+ - React-jsinspector
331
+ - React-logger (= 0.74.0)
332
+ - React-perflogger (= 0.74.0)
333
+ - React-runtimeexecutor (= 0.74.0)
334
+ - React-debug (0.74.0)
335
+ - React-Fabric (0.74.0):
336
+ - DoubleConversion
337
+ - fmt (= 9.1.0)
338
+ - glog
339
+ - hermes-engine
340
+ - RCT-Folly/Fabric (= 2024.01.01.00)
341
+ - RCTRequired
342
+ - RCTTypeSafety
343
+ - React-Core
344
+ - React-cxxreact
345
+ - React-debug
346
+ - React-Fabric/animations (= 0.74.0)
347
+ - React-Fabric/attributedstring (= 0.74.0)
348
+ - React-Fabric/componentregistry (= 0.74.0)
349
+ - React-Fabric/componentregistrynative (= 0.74.0)
350
+ - React-Fabric/components (= 0.74.0)
351
+ - React-Fabric/core (= 0.74.0)
352
+ - React-Fabric/imagemanager (= 0.74.0)
353
+ - React-Fabric/leakchecker (= 0.74.0)
354
+ - React-Fabric/mounting (= 0.74.0)
355
+ - React-Fabric/scheduler (= 0.74.0)
356
+ - React-Fabric/telemetry (= 0.74.0)
357
+ - React-Fabric/templateprocessor (= 0.74.0)
358
+ - React-Fabric/textlayoutmanager (= 0.74.0)
359
+ - React-Fabric/uimanager (= 0.74.0)
360
+ - React-graphics
361
+ - React-jsi
362
+ - React-jsiexecutor
363
+ - React-logger
364
+ - React-rendererdebug
365
+ - React-runtimescheduler
366
+ - React-utils
367
+ - ReactCommon/turbomodule/core
368
+ - React-Fabric/animations (0.74.0):
369
+ - DoubleConversion
370
+ - fmt (= 9.1.0)
371
+ - glog
372
+ - hermes-engine
373
+ - RCT-Folly/Fabric (= 2024.01.01.00)
374
+ - RCTRequired
375
+ - RCTTypeSafety
376
+ - React-Core
377
+ - React-cxxreact
378
+ - React-debug
379
+ - React-graphics
380
+ - React-jsi
381
+ - React-jsiexecutor
382
+ - React-logger
383
+ - React-rendererdebug
384
+ - React-runtimescheduler
385
+ - React-utils
386
+ - ReactCommon/turbomodule/core
387
+ - React-Fabric/attributedstring (0.74.0):
388
+ - DoubleConversion
389
+ - fmt (= 9.1.0)
390
+ - glog
391
+ - hermes-engine
392
+ - RCT-Folly/Fabric (= 2024.01.01.00)
393
+ - RCTRequired
394
+ - RCTTypeSafety
395
+ - React-Core
396
+ - React-cxxreact
397
+ - React-debug
398
+ - React-graphics
399
+ - React-jsi
400
+ - React-jsiexecutor
401
+ - React-logger
402
+ - React-rendererdebug
403
+ - React-runtimescheduler
404
+ - React-utils
405
+ - ReactCommon/turbomodule/core
406
+ - React-Fabric/componentregistry (0.74.0):
407
+ - DoubleConversion
408
+ - fmt (= 9.1.0)
409
+ - glog
410
+ - hermes-engine
411
+ - RCT-Folly/Fabric (= 2024.01.01.00)
412
+ - RCTRequired
413
+ - RCTTypeSafety
414
+ - React-Core
415
+ - React-cxxreact
416
+ - React-debug
417
+ - React-graphics
418
+ - React-jsi
419
+ - React-jsiexecutor
420
+ - React-logger
421
+ - React-rendererdebug
422
+ - React-runtimescheduler
423
+ - React-utils
424
+ - ReactCommon/turbomodule/core
425
+ - React-Fabric/componentregistrynative (0.74.0):
426
+ - DoubleConversion
427
+ - fmt (= 9.1.0)
428
+ - glog
429
+ - hermes-engine
430
+ - RCT-Folly/Fabric (= 2024.01.01.00)
431
+ - RCTRequired
432
+ - RCTTypeSafety
433
+ - React-Core
434
+ - React-cxxreact
435
+ - React-debug
436
+ - React-graphics
437
+ - React-jsi
438
+ - React-jsiexecutor
439
+ - React-logger
440
+ - React-rendererdebug
441
+ - React-runtimescheduler
442
+ - React-utils
443
+ - ReactCommon/turbomodule/core
444
+ - React-Fabric/components (0.74.0):
445
+ - DoubleConversion
446
+ - fmt (= 9.1.0)
447
+ - glog
448
+ - hermes-engine
449
+ - RCT-Folly/Fabric (= 2024.01.01.00)
450
+ - RCTRequired
451
+ - RCTTypeSafety
452
+ - React-Core
453
+ - React-cxxreact
454
+ - React-debug
455
+ - React-Fabric/components/inputaccessory (= 0.74.0)
456
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.74.0)
457
+ - React-Fabric/components/modal (= 0.74.0)
458
+ - React-Fabric/components/rncore (= 0.74.0)
459
+ - React-Fabric/components/root (= 0.74.0)
460
+ - React-Fabric/components/safeareaview (= 0.74.0)
461
+ - React-Fabric/components/scrollview (= 0.74.0)
462
+ - React-Fabric/components/text (= 0.74.0)
463
+ - React-Fabric/components/textinput (= 0.74.0)
464
+ - React-Fabric/components/unimplementedview (= 0.74.0)
465
+ - React-Fabric/components/view (= 0.74.0)
466
+ - React-graphics
467
+ - React-jsi
468
+ - React-jsiexecutor
469
+ - React-logger
470
+ - React-rendererdebug
471
+ - React-runtimescheduler
472
+ - React-utils
473
+ - ReactCommon/turbomodule/core
474
+ - React-Fabric/components/inputaccessory (0.74.0):
475
+ - DoubleConversion
476
+ - fmt (= 9.1.0)
477
+ - glog
478
+ - hermes-engine
479
+ - RCT-Folly/Fabric (= 2024.01.01.00)
480
+ - RCTRequired
481
+ - RCTTypeSafety
482
+ - React-Core
483
+ - React-cxxreact
484
+ - React-debug
485
+ - React-graphics
486
+ - React-jsi
487
+ - React-jsiexecutor
488
+ - React-logger
489
+ - React-rendererdebug
490
+ - React-runtimescheduler
491
+ - React-utils
492
+ - ReactCommon/turbomodule/core
493
+ - React-Fabric/components/legacyviewmanagerinterop (0.74.0):
494
+ - DoubleConversion
495
+ - fmt (= 9.1.0)
496
+ - glog
497
+ - hermes-engine
498
+ - RCT-Folly/Fabric (= 2024.01.01.00)
499
+ - RCTRequired
500
+ - RCTTypeSafety
501
+ - React-Core
502
+ - React-cxxreact
503
+ - React-debug
504
+ - React-graphics
505
+ - React-jsi
506
+ - React-jsiexecutor
507
+ - React-logger
508
+ - React-rendererdebug
509
+ - React-runtimescheduler
510
+ - React-utils
511
+ - ReactCommon/turbomodule/core
512
+ - React-Fabric/components/modal (0.74.0):
513
+ - DoubleConversion
514
+ - fmt (= 9.1.0)
515
+ - glog
516
+ - hermes-engine
517
+ - RCT-Folly/Fabric (= 2024.01.01.00)
518
+ - RCTRequired
519
+ - RCTTypeSafety
520
+ - React-Core
521
+ - React-cxxreact
522
+ - React-debug
523
+ - React-graphics
524
+ - React-jsi
525
+ - React-jsiexecutor
526
+ - React-logger
527
+ - React-rendererdebug
528
+ - React-runtimescheduler
529
+ - React-utils
530
+ - ReactCommon/turbomodule/core
531
+ - React-Fabric/components/rncore (0.74.0):
532
+ - DoubleConversion
533
+ - fmt (= 9.1.0)
534
+ - glog
535
+ - hermes-engine
536
+ - RCT-Folly/Fabric (= 2024.01.01.00)
537
+ - RCTRequired
538
+ - RCTTypeSafety
539
+ - React-Core
540
+ - React-cxxreact
541
+ - React-debug
542
+ - React-graphics
543
+ - React-jsi
544
+ - React-jsiexecutor
545
+ - React-logger
546
+ - React-rendererdebug
547
+ - React-runtimescheduler
548
+ - React-utils
549
+ - ReactCommon/turbomodule/core
550
+ - React-Fabric/components/root (0.74.0):
551
+ - DoubleConversion
552
+ - fmt (= 9.1.0)
553
+ - glog
554
+ - hermes-engine
555
+ - RCT-Folly/Fabric (= 2024.01.01.00)
556
+ - RCTRequired
557
+ - RCTTypeSafety
558
+ - React-Core
559
+ - React-cxxreact
560
+ - React-debug
561
+ - React-graphics
562
+ - React-jsi
563
+ - React-jsiexecutor
564
+ - React-logger
565
+ - React-rendererdebug
566
+ - React-runtimescheduler
567
+ - React-utils
568
+ - ReactCommon/turbomodule/core
569
+ - React-Fabric/components/safeareaview (0.74.0):
570
+ - DoubleConversion
571
+ - fmt (= 9.1.0)
572
+ - glog
573
+ - hermes-engine
574
+ - RCT-Folly/Fabric (= 2024.01.01.00)
575
+ - RCTRequired
576
+ - RCTTypeSafety
577
+ - React-Core
578
+ - React-cxxreact
579
+ - React-debug
580
+ - React-graphics
581
+ - React-jsi
582
+ - React-jsiexecutor
583
+ - React-logger
584
+ - React-rendererdebug
585
+ - React-runtimescheduler
586
+ - React-utils
587
+ - ReactCommon/turbomodule/core
588
+ - React-Fabric/components/scrollview (0.74.0):
589
+ - DoubleConversion
590
+ - fmt (= 9.1.0)
591
+ - glog
592
+ - hermes-engine
593
+ - RCT-Folly/Fabric (= 2024.01.01.00)
594
+ - RCTRequired
595
+ - RCTTypeSafety
596
+ - React-Core
597
+ - React-cxxreact
598
+ - React-debug
599
+ - React-graphics
600
+ - React-jsi
601
+ - React-jsiexecutor
602
+ - React-logger
603
+ - React-rendererdebug
604
+ - React-runtimescheduler
605
+ - React-utils
606
+ - ReactCommon/turbomodule/core
607
+ - React-Fabric/components/text (0.74.0):
608
+ - DoubleConversion
609
+ - fmt (= 9.1.0)
610
+ - glog
611
+ - hermes-engine
612
+ - RCT-Folly/Fabric (= 2024.01.01.00)
613
+ - RCTRequired
614
+ - RCTTypeSafety
615
+ - React-Core
616
+ - React-cxxreact
617
+ - React-debug
618
+ - React-graphics
619
+ - React-jsi
620
+ - React-jsiexecutor
621
+ - React-logger
622
+ - React-rendererdebug
623
+ - React-runtimescheduler
624
+ - React-utils
625
+ - ReactCommon/turbomodule/core
626
+ - React-Fabric/components/textinput (0.74.0):
627
+ - DoubleConversion
628
+ - fmt (= 9.1.0)
629
+ - glog
630
+ - hermes-engine
631
+ - RCT-Folly/Fabric (= 2024.01.01.00)
632
+ - RCTRequired
633
+ - RCTTypeSafety
634
+ - React-Core
635
+ - React-cxxreact
636
+ - React-debug
637
+ - React-graphics
638
+ - React-jsi
639
+ - React-jsiexecutor
640
+ - React-logger
641
+ - React-rendererdebug
642
+ - React-runtimescheduler
643
+ - React-utils
644
+ - ReactCommon/turbomodule/core
645
+ - React-Fabric/components/unimplementedview (0.74.0):
646
+ - DoubleConversion
647
+ - fmt (= 9.1.0)
648
+ - glog
649
+ - hermes-engine
650
+ - RCT-Folly/Fabric (= 2024.01.01.00)
651
+ - RCTRequired
652
+ - RCTTypeSafety
653
+ - React-Core
654
+ - React-cxxreact
655
+ - React-debug
656
+ - React-graphics
657
+ - React-jsi
658
+ - React-jsiexecutor
659
+ - React-logger
660
+ - React-rendererdebug
661
+ - React-runtimescheduler
662
+ - React-utils
663
+ - ReactCommon/turbomodule/core
664
+ - React-Fabric/components/view (0.74.0):
665
+ - DoubleConversion
666
+ - fmt (= 9.1.0)
667
+ - glog
668
+ - hermes-engine
669
+ - RCT-Folly/Fabric (= 2024.01.01.00)
670
+ - RCTRequired
671
+ - RCTTypeSafety
672
+ - React-Core
673
+ - React-cxxreact
674
+ - React-debug
675
+ - React-graphics
676
+ - React-jsi
677
+ - React-jsiexecutor
678
+ - React-logger
679
+ - React-rendererdebug
680
+ - React-runtimescheduler
681
+ - React-utils
682
+ - ReactCommon/turbomodule/core
683
+ - Yoga
684
+ - React-Fabric/core (0.74.0):
685
+ - DoubleConversion
686
+ - fmt (= 9.1.0)
687
+ - glog
688
+ - hermes-engine
689
+ - RCT-Folly/Fabric (= 2024.01.01.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
+ - React-Fabric/imagemanager (0.74.0):
704
+ - DoubleConversion
705
+ - fmt (= 9.1.0)
706
+ - glog
707
+ - hermes-engine
708
+ - RCT-Folly/Fabric (= 2024.01.01.00)
709
+ - RCTRequired
710
+ - RCTTypeSafety
711
+ - React-Core
712
+ - React-cxxreact
713
+ - React-debug
714
+ - React-graphics
715
+ - React-jsi
716
+ - React-jsiexecutor
717
+ - React-logger
718
+ - React-rendererdebug
719
+ - React-runtimescheduler
720
+ - React-utils
721
+ - ReactCommon/turbomodule/core
722
+ - React-Fabric/leakchecker (0.74.0):
723
+ - DoubleConversion
724
+ - fmt (= 9.1.0)
725
+ - glog
726
+ - hermes-engine
727
+ - RCT-Folly/Fabric (= 2024.01.01.00)
728
+ - RCTRequired
729
+ - RCTTypeSafety
730
+ - React-Core
731
+ - React-cxxreact
732
+ - React-debug
733
+ - React-graphics
734
+ - React-jsi
735
+ - React-jsiexecutor
736
+ - React-logger
737
+ - React-rendererdebug
738
+ - React-runtimescheduler
739
+ - React-utils
740
+ - ReactCommon/turbomodule/core
741
+ - React-Fabric/mounting (0.74.0):
742
+ - DoubleConversion
743
+ - fmt (= 9.1.0)
744
+ - glog
745
+ - hermes-engine
746
+ - RCT-Folly/Fabric (= 2024.01.01.00)
747
+ - RCTRequired
748
+ - RCTTypeSafety
749
+ - React-Core
750
+ - React-cxxreact
751
+ - React-debug
752
+ - React-graphics
753
+ - React-jsi
754
+ - React-jsiexecutor
755
+ - React-logger
756
+ - React-rendererdebug
757
+ - React-runtimescheduler
758
+ - React-utils
759
+ - ReactCommon/turbomodule/core
760
+ - React-Fabric/scheduler (0.74.0):
761
+ - DoubleConversion
762
+ - fmt (= 9.1.0)
763
+ - glog
764
+ - hermes-engine
765
+ - RCT-Folly/Fabric (= 2024.01.01.00)
766
+ - RCTRequired
767
+ - RCTTypeSafety
768
+ - React-Core
769
+ - React-cxxreact
770
+ - React-debug
771
+ - React-graphics
772
+ - React-jsi
773
+ - React-jsiexecutor
774
+ - React-logger
775
+ - React-rendererdebug
776
+ - React-runtimescheduler
777
+ - React-utils
778
+ - ReactCommon/turbomodule/core
779
+ - React-Fabric/telemetry (0.74.0):
780
+ - DoubleConversion
781
+ - fmt (= 9.1.0)
782
+ - glog
783
+ - hermes-engine
784
+ - RCT-Folly/Fabric (= 2024.01.01.00)
785
+ - RCTRequired
786
+ - RCTTypeSafety
787
+ - React-Core
788
+ - React-cxxreact
789
+ - React-debug
790
+ - React-graphics
791
+ - React-jsi
792
+ - React-jsiexecutor
793
+ - React-logger
794
+ - React-rendererdebug
795
+ - React-runtimescheduler
796
+ - React-utils
797
+ - ReactCommon/turbomodule/core
798
+ - React-Fabric/templateprocessor (0.74.0):
799
+ - DoubleConversion
800
+ - fmt (= 9.1.0)
801
+ - glog
802
+ - hermes-engine
803
+ - RCT-Folly/Fabric (= 2024.01.01.00)
804
+ - RCTRequired
805
+ - RCTTypeSafety
806
+ - React-Core
807
+ - React-cxxreact
808
+ - React-debug
809
+ - React-graphics
810
+ - React-jsi
811
+ - React-jsiexecutor
812
+ - React-logger
813
+ - React-rendererdebug
814
+ - React-runtimescheduler
815
+ - React-utils
816
+ - ReactCommon/turbomodule/core
817
+ - React-Fabric/textlayoutmanager (0.74.0):
818
+ - DoubleConversion
819
+ - fmt (= 9.1.0)
820
+ - glog
821
+ - hermes-engine
822
+ - RCT-Folly/Fabric (= 2024.01.01.00)
823
+ - RCTRequired
824
+ - RCTTypeSafety
825
+ - React-Core
826
+ - React-cxxreact
827
+ - React-debug
828
+ - React-Fabric/uimanager
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/uimanager (0.74.0):
838
+ - DoubleConversion
839
+ - fmt (= 9.1.0)
840
+ - glog
841
+ - hermes-engine
842
+ - RCT-Folly/Fabric (= 2024.01.01.00)
843
+ - RCTRequired
844
+ - RCTTypeSafety
845
+ - React-Core
846
+ - React-cxxreact
847
+ - React-debug
848
+ - React-graphics
849
+ - React-jsi
850
+ - React-jsiexecutor
851
+ - React-logger
852
+ - React-rendererdebug
853
+ - React-runtimescheduler
854
+ - React-utils
855
+ - ReactCommon/turbomodule/core
856
+ - React-FabricImage (0.74.0):
857
+ - DoubleConversion
858
+ - fmt (= 9.1.0)
859
+ - glog
860
+ - hermes-engine
861
+ - RCT-Folly/Fabric (= 2024.01.01.00)
862
+ - RCTRequired (= 0.74.0)
863
+ - RCTTypeSafety (= 0.74.0)
864
+ - React-Fabric
865
+ - React-graphics
866
+ - React-ImageManager
867
+ - React-jsi
868
+ - React-jsiexecutor (= 0.74.0)
869
+ - React-logger
870
+ - React-rendererdebug
871
+ - React-utils
872
+ - ReactCommon
873
+ - Yoga
874
+ - React-featureflags (0.74.0)
875
+ - React-graphics (0.74.0):
876
+ - DoubleConversion
877
+ - fmt (= 9.1.0)
878
+ - glog
879
+ - RCT-Folly/Fabric (= 2024.01.01.00)
880
+ - React-Core/Default (= 0.74.0)
881
+ - React-utils
882
+ - React-hermes (0.74.0):
883
+ - DoubleConversion
884
+ - fmt (= 9.1.0)
885
+ - glog
886
+ - hermes-engine
887
+ - RCT-Folly (= 2024.01.01.00)
888
+ - React-cxxreact (= 0.74.0)
889
+ - React-jsi
890
+ - React-jsiexecutor (= 0.74.0)
891
+ - React-jsinspector
892
+ - React-perflogger (= 0.74.0)
893
+ - React-runtimeexecutor
894
+ - React-ImageManager (0.74.0):
895
+ - glog
896
+ - RCT-Folly/Fabric
897
+ - React-Core/Default
898
+ - React-debug
899
+ - React-Fabric
900
+ - React-graphics
901
+ - React-rendererdebug
902
+ - React-utils
903
+ - React-jserrorhandler (0.74.0):
904
+ - RCT-Folly/Fabric (= 2024.01.01.00)
905
+ - React-debug
906
+ - React-jsi
907
+ - React-Mapbuffer
908
+ - React-jsi (0.74.0):
909
+ - boost (= 1.83.0)
910
+ - DoubleConversion
911
+ - fmt (= 9.1.0)
912
+ - glog
913
+ - hermes-engine
914
+ - RCT-Folly (= 2024.01.01.00)
915
+ - React-jsiexecutor (0.74.0):
916
+ - DoubleConversion
917
+ - fmt (= 9.1.0)
918
+ - glog
919
+ - hermes-engine
920
+ - RCT-Folly (= 2024.01.01.00)
921
+ - React-cxxreact (= 0.74.0)
922
+ - React-jsi (= 0.74.0)
923
+ - React-jsinspector
924
+ - React-perflogger (= 0.74.0)
925
+ - React-jsinspector (0.74.0):
926
+ - DoubleConversion
927
+ - glog
928
+ - hermes-engine
929
+ - RCT-Folly (= 2024.01.01.00)
930
+ - React-featureflags
931
+ - React-jsi
932
+ - React-runtimeexecutor (= 0.74.0)
933
+ - React-jsitracing (0.74.0):
934
+ - React-jsi
935
+ - React-logger (0.74.0):
936
+ - glog
937
+ - React-Mapbuffer (0.74.0):
938
+ - glog
939
+ - React-debug
940
+ - react-native-slider (4.5.2):
941
+ - DoubleConversion
942
+ - glog
943
+ - hermes-engine
944
+ - RCT-Folly (= 2024.01.01.00)
945
+ - RCTRequired
946
+ - RCTTypeSafety
947
+ - React-Codegen
948
+ - React-Core
949
+ - React-debug
950
+ - React-Fabric
951
+ - React-featureflags
952
+ - React-graphics
953
+ - React-ImageManager
954
+ - React-NativeModulesApple
955
+ - React-RCTFabric
956
+ - React-rendererdebug
957
+ - React-utils
958
+ - ReactCommon/turbomodule/bridging
959
+ - ReactCommon/turbomodule/core
960
+ - Yoga
961
+ - react-native-track-player (4.1.1):
962
+ - React-Core
963
+ - SwiftAudioEx (= 1.1.0)
964
+ - React-nativeconfig (0.74.0)
965
+ - React-NativeModulesApple (0.74.0):
966
+ - glog
967
+ - hermes-engine
968
+ - React-callinvoker
969
+ - React-Core
970
+ - React-cxxreact
971
+ - React-jsi
972
+ - React-jsinspector
973
+ - React-runtimeexecutor
974
+ - ReactCommon/turbomodule/bridging
975
+ - ReactCommon/turbomodule/core
976
+ - React-perflogger (0.74.0)
977
+ - React-RCTActionSheet (0.74.0):
978
+ - React-Core/RCTActionSheetHeaders (= 0.74.0)
979
+ - React-RCTAnimation (0.74.0):
980
+ - RCT-Folly (= 2024.01.01.00)
981
+ - RCTTypeSafety
982
+ - React-Codegen
983
+ - React-Core/RCTAnimationHeaders
984
+ - React-jsi
985
+ - React-NativeModulesApple
986
+ - ReactCommon
987
+ - React-RCTAppDelegate (0.74.0):
988
+ - RCT-Folly (= 2024.01.01.00)
989
+ - RCTRequired
990
+ - RCTTypeSafety
991
+ - React-Codegen
992
+ - React-Core
993
+ - React-CoreModules
994
+ - React-debug
995
+ - React-Fabric
996
+ - React-graphics
997
+ - React-hermes
998
+ - React-nativeconfig
999
+ - React-NativeModulesApple
1000
+ - React-RCTFabric
1001
+ - React-RCTImage
1002
+ - React-RCTNetwork
1003
+ - React-rendererdebug
1004
+ - React-RuntimeApple
1005
+ - React-RuntimeCore
1006
+ - React-RuntimeHermes
1007
+ - React-runtimescheduler
1008
+ - React-utils
1009
+ - ReactCommon
1010
+ - React-RCTBlob (0.74.0):
1011
+ - DoubleConversion
1012
+ - fmt (= 9.1.0)
1013
+ - hermes-engine
1014
+ - RCT-Folly (= 2024.01.01.00)
1015
+ - React-Codegen
1016
+ - React-Core/RCTBlobHeaders
1017
+ - React-Core/RCTWebSocket
1018
+ - React-jsi
1019
+ - React-jsinspector
1020
+ - React-NativeModulesApple
1021
+ - React-RCTNetwork
1022
+ - ReactCommon
1023
+ - React-RCTFabric (0.74.0):
1024
+ - glog
1025
+ - hermes-engine
1026
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1027
+ - React-Core
1028
+ - React-debug
1029
+ - React-Fabric
1030
+ - React-FabricImage
1031
+ - React-featureflags
1032
+ - React-graphics
1033
+ - React-ImageManager
1034
+ - React-jsi
1035
+ - React-jsinspector
1036
+ - React-nativeconfig
1037
+ - React-RCTImage
1038
+ - React-RCTText
1039
+ - React-rendererdebug
1040
+ - React-runtimescheduler
1041
+ - React-utils
1042
+ - Yoga
1043
+ - React-RCTImage (0.74.0):
1044
+ - RCT-Folly (= 2024.01.01.00)
1045
+ - RCTTypeSafety
1046
+ - React-Codegen
1047
+ - React-Core/RCTImageHeaders
1048
+ - React-jsi
1049
+ - React-NativeModulesApple
1050
+ - React-RCTNetwork
1051
+ - ReactCommon
1052
+ - React-RCTLinking (0.74.0):
1053
+ - React-Codegen
1054
+ - React-Core/RCTLinkingHeaders (= 0.74.0)
1055
+ - React-jsi (= 0.74.0)
1056
+ - React-NativeModulesApple
1057
+ - ReactCommon
1058
+ - ReactCommon/turbomodule/core (= 0.74.0)
1059
+ - React-RCTNetwork (0.74.0):
1060
+ - RCT-Folly (= 2024.01.01.00)
1061
+ - RCTTypeSafety
1062
+ - React-Codegen
1063
+ - React-Core/RCTNetworkHeaders
1064
+ - React-jsi
1065
+ - React-NativeModulesApple
1066
+ - ReactCommon
1067
+ - React-RCTSettings (0.74.0):
1068
+ - RCT-Folly (= 2024.01.01.00)
1069
+ - RCTTypeSafety
1070
+ - React-Codegen
1071
+ - React-Core/RCTSettingsHeaders
1072
+ - React-jsi
1073
+ - React-NativeModulesApple
1074
+ - ReactCommon
1075
+ - React-RCTText (0.74.0):
1076
+ - React-Core/RCTTextHeaders (= 0.74.0)
1077
+ - Yoga
1078
+ - React-RCTVibration (0.74.0):
1079
+ - RCT-Folly (= 2024.01.01.00)
1080
+ - React-Codegen
1081
+ - React-Core/RCTVibrationHeaders
1082
+ - React-jsi
1083
+ - React-NativeModulesApple
1084
+ - ReactCommon
1085
+ - React-rendererdebug (0.74.0):
1086
+ - DoubleConversion
1087
+ - fmt (= 9.1.0)
1088
+ - RCT-Folly (= 2024.01.01.00)
1089
+ - React-debug
1090
+ - React-rncore (0.74.0)
1091
+ - React-RuntimeApple (0.74.0):
1092
+ - hermes-engine
1093
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1094
+ - React-callinvoker
1095
+ - React-Core/Default
1096
+ - React-CoreModules
1097
+ - React-cxxreact
1098
+ - React-jserrorhandler
1099
+ - React-jsi
1100
+ - React-jsiexecutor
1101
+ - React-jsinspector
1102
+ - React-Mapbuffer
1103
+ - React-NativeModulesApple
1104
+ - React-RCTFabric
1105
+ - React-RuntimeCore
1106
+ - React-runtimeexecutor
1107
+ - React-RuntimeHermes
1108
+ - React-utils
1109
+ - React-RuntimeCore (0.74.0):
1110
+ - glog
1111
+ - hermes-engine
1112
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1113
+ - React-cxxreact
1114
+ - React-featureflags
1115
+ - React-jserrorhandler
1116
+ - React-jsi
1117
+ - React-jsiexecutor
1118
+ - React-jsinspector
1119
+ - React-runtimeexecutor
1120
+ - React-runtimescheduler
1121
+ - React-utils
1122
+ - React-runtimeexecutor (0.74.0):
1123
+ - React-jsi (= 0.74.0)
1124
+ - React-RuntimeHermes (0.74.0):
1125
+ - hermes-engine
1126
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1127
+ - React-featureflags
1128
+ - React-hermes
1129
+ - React-jsi
1130
+ - React-jsinspector
1131
+ - React-jsitracing
1132
+ - React-nativeconfig
1133
+ - React-RuntimeCore
1134
+ - React-utils
1135
+ - React-runtimescheduler (0.74.0):
1136
+ - glog
1137
+ - hermes-engine
1138
+ - RCT-Folly (= 2024.01.01.00)
1139
+ - React-callinvoker
1140
+ - React-cxxreact
1141
+ - React-debug
1142
+ - React-featureflags
1143
+ - React-jsi
1144
+ - React-rendererdebug
1145
+ - React-runtimeexecutor
1146
+ - React-utils
1147
+ - React-utils (0.74.0):
1148
+ - glog
1149
+ - hermes-engine
1150
+ - RCT-Folly (= 2024.01.01.00)
1151
+ - React-debug
1152
+ - React-jsi (= 0.74.0)
1153
+ - ReactCommon (0.74.0):
1154
+ - ReactCommon/turbomodule (= 0.74.0)
1155
+ - ReactCommon/turbomodule (0.74.0):
1156
+ - DoubleConversion
1157
+ - fmt (= 9.1.0)
1158
+ - glog
1159
+ - hermes-engine
1160
+ - RCT-Folly (= 2024.01.01.00)
1161
+ - React-callinvoker (= 0.74.0)
1162
+ - React-cxxreact (= 0.74.0)
1163
+ - React-jsi (= 0.74.0)
1164
+ - React-logger (= 0.74.0)
1165
+ - React-perflogger (= 0.74.0)
1166
+ - ReactCommon/turbomodule/bridging (= 0.74.0)
1167
+ - ReactCommon/turbomodule/core (= 0.74.0)
1168
+ - ReactCommon/turbomodule/bridging (0.74.0):
1169
+ - DoubleConversion
1170
+ - fmt (= 9.1.0)
1171
+ - glog
1172
+ - hermes-engine
1173
+ - RCT-Folly (= 2024.01.01.00)
1174
+ - React-callinvoker (= 0.74.0)
1175
+ - React-cxxreact (= 0.74.0)
1176
+ - React-jsi (= 0.74.0)
1177
+ - React-logger (= 0.74.0)
1178
+ - React-perflogger (= 0.74.0)
1179
+ - ReactCommon/turbomodule/core (0.74.0):
1180
+ - DoubleConversion
1181
+ - fmt (= 9.1.0)
1182
+ - glog
1183
+ - hermes-engine
1184
+ - RCT-Folly (= 2024.01.01.00)
1185
+ - React-callinvoker (= 0.74.0)
1186
+ - React-cxxreact (= 0.74.0)
1187
+ - React-debug (= 0.74.0)
1188
+ - React-jsi (= 0.74.0)
1189
+ - React-logger (= 0.74.0)
1190
+ - React-perflogger (= 0.74.0)
1191
+ - React-utils (= 0.74.0)
1192
+ - RNCAsyncStorage (1.23.1):
1193
+ - React-Core
1194
+ - RNCClipboard (1.14.1):
1195
+ - React-Core
1196
+ - RNFS (2.20.0):
1197
+ - React-Core
1198
+ - SocketRocket (0.7.0)
1199
+ - SwiftAudioEx (1.1.0)
1200
+ - Yoga (0.0.0)
1201
+
1202
+ DEPENDENCIES:
1203
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1204
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1205
+ - DynamicFonts (from `../node_modules/react-native-dynamic-fonts`)
1206
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1207
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1208
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1209
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1210
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1211
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1212
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1213
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1214
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1215
+ - React (from `../node_modules/react-native/`)
1216
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1217
+ - React-Codegen (from `build/generated/ios`)
1218
+ - React-Core (from `../node_modules/react-native/`)
1219
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1220
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1221
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1222
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1223
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1224
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1225
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1226
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1227
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1228
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1229
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1230
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1231
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1232
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1233
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1234
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1235
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1236
+ - "react-native-slider (from `../node_modules/@react-native-community/slider`)"
1237
+ - react-native-track-player (from `../node_modules/react-native-track-player`)
1238
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1239
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1240
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1241
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1242
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1243
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1244
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1245
+ - React-RCTFabric (from `../node_modules/react-native/React`)
1246
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1247
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1248
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1249
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1250
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1251
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1252
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1253
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
1254
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1255
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1256
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1257
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1258
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1259
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1260
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1261
+ - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
1262
+ - "RNCClipboard (from `../node_modules/@react-native-clipboard/clipboard`)"
1263
+ - RNFS (from `../node_modules/react-native-fs`)
1264
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1265
+
1266
+ SPEC REPOS:
1267
+ trunk:
1268
+ - SocketRocket
1269
+ - SwiftAudioEx
1270
+
1271
+ EXTERNAL SOURCES:
1272
+ boost:
1273
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1274
+ DoubleConversion:
1275
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1276
+ DynamicFonts:
1277
+ :path: "../node_modules/react-native-dynamic-fonts"
1278
+ FBLazyVector:
1279
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
1280
+ fmt:
1281
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1282
+ glog:
1283
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1284
+ hermes-engine:
1285
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1286
+ :tag: hermes-2024-02-20-RNv0.74.0-999cfd9979b5f57b1269119679ab8cdf60897de9
1287
+ RCT-Folly:
1288
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1289
+ RCTDeprecation:
1290
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1291
+ RCTRequired:
1292
+ :path: "../node_modules/react-native/Libraries/Required"
1293
+ RCTTypeSafety:
1294
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
1295
+ React:
1296
+ :path: "../node_modules/react-native/"
1297
+ React-callinvoker:
1298
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
1299
+ React-Codegen:
1300
+ :path: build/generated/ios
1301
+ React-Core:
1302
+ :path: "../node_modules/react-native/"
1303
+ React-CoreModules:
1304
+ :path: "../node_modules/react-native/React/CoreModules"
1305
+ React-cxxreact:
1306
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
1307
+ React-debug:
1308
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
1309
+ React-Fabric:
1310
+ :path: "../node_modules/react-native/ReactCommon"
1311
+ React-FabricImage:
1312
+ :path: "../node_modules/react-native/ReactCommon"
1313
+ React-featureflags:
1314
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1315
+ React-graphics:
1316
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1317
+ React-hermes:
1318
+ :path: "../node_modules/react-native/ReactCommon/hermes"
1319
+ React-ImageManager:
1320
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1321
+ React-jserrorhandler:
1322
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1323
+ React-jsi:
1324
+ :path: "../node_modules/react-native/ReactCommon/jsi"
1325
+ React-jsiexecutor:
1326
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1327
+ React-jsinspector:
1328
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1329
+ React-jsitracing:
1330
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1331
+ React-logger:
1332
+ :path: "../node_modules/react-native/ReactCommon/logger"
1333
+ React-Mapbuffer:
1334
+ :path: "../node_modules/react-native/ReactCommon"
1335
+ react-native-slider:
1336
+ :path: "../node_modules/@react-native-community/slider"
1337
+ react-native-track-player:
1338
+ :path: "../node_modules/react-native-track-player"
1339
+ React-nativeconfig:
1340
+ :path: "../node_modules/react-native/ReactCommon"
1341
+ React-NativeModulesApple:
1342
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1343
+ React-perflogger:
1344
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1345
+ React-RCTActionSheet:
1346
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1347
+ React-RCTAnimation:
1348
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
1349
+ React-RCTAppDelegate:
1350
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
1351
+ React-RCTBlob:
1352
+ :path: "../node_modules/react-native/Libraries/Blob"
1353
+ React-RCTFabric:
1354
+ :path: "../node_modules/react-native/React"
1355
+ React-RCTImage:
1356
+ :path: "../node_modules/react-native/Libraries/Image"
1357
+ React-RCTLinking:
1358
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
1359
+ React-RCTNetwork:
1360
+ :path: "../node_modules/react-native/Libraries/Network"
1361
+ React-RCTSettings:
1362
+ :path: "../node_modules/react-native/Libraries/Settings"
1363
+ React-RCTText:
1364
+ :path: "../node_modules/react-native/Libraries/Text"
1365
+ React-RCTVibration:
1366
+ :path: "../node_modules/react-native/Libraries/Vibration"
1367
+ React-rendererdebug:
1368
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1369
+ React-rncore:
1370
+ :path: "../node_modules/react-native/ReactCommon"
1371
+ React-RuntimeApple:
1372
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1373
+ React-RuntimeCore:
1374
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1375
+ React-runtimeexecutor:
1376
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1377
+ React-RuntimeHermes:
1378
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1379
+ React-runtimescheduler:
1380
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1381
+ React-utils:
1382
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
1383
+ ReactCommon:
1384
+ :path: "../node_modules/react-native/ReactCommon"
1385
+ RNCAsyncStorage:
1386
+ :path: "../node_modules/@react-native-async-storage/async-storage"
1387
+ RNCClipboard:
1388
+ :path: "../node_modules/@react-native-clipboard/clipboard"
1389
+ RNFS:
1390
+ :path: "../node_modules/react-native-fs"
1391
+ Yoga:
1392
+ :path: "../node_modules/react-native/ReactCommon/yoga"
1393
+
1394
+ SPEC CHECKSUMS:
1395
+ boost: d3f49c53809116a5d38da093a8aa78bf551aed09
1396
+ DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
1397
+ DynamicFonts: ce5e5b8940f7aa9a2ceb1bc2ea4d7745eda1ee29
1398
+ FBLazyVector: 026c8f4ae67b06e088ae01baa2271ef8a26c0e8c
1399
+ fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
1400
+ glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
1401
+ hermes-engine: 6eae7edb2f563ee41d7c1f91f4f2e57c26d8a5c3
1402
+ RCT-Folly: 045d6ecaa59d826c5736dfba0b2f4083ff8d79df
1403
+ RCTDeprecation: 3ca8b6c36bfb302e1895b72cfe7db0de0c92cd47
1404
+ RCTRequired: 9fc183af555fd0c89a366c34c1ae70b7e03b1dc5
1405
+ RCTTypeSafety: db1dd5ad1081a5e160d30bb29ef922693d5ac4b1
1406
+ React: 8650d592d90b99097504b8dcfebab883972aed71
1407
+ React-callinvoker: 6bb8b399ab8cec59e52458c3a592aa1fca130b68
1408
+ React-Codegen: 7014b8564cb45f51d01c950256456e20f679d42e
1409
+ React-Core: 119ddf031a18926c2f59849bedcc83c1ba347419
1410
+ React-CoreModules: 087c24b785afc79d29d23bffe7b02f79bb00cf76
1411
+ React-cxxreact: 67a110c97ed6a53b393be3c90fc3f0b482770bd1
1412
+ React-debug: 41175f3e30dfa8af6eab2631261e1eac26307f9f
1413
+ React-Fabric: 235d71c7d7973fb5c3f099f2962d6b5362be6107
1414
+ React-FabricImage: 44f4ee8c9331688ab5e907a40cbd49010b05e687
1415
+ React-featureflags: 5e7e78c607661fe7f72bc38c6f03736e0876753a
1416
+ React-graphics: 354adf8693bf849e696bf5096abc8cdc22c78ab4
1417
+ React-hermes: 17c369e15cfb535d7bc880d432e0e291c81d10d9
1418
+ React-ImageManager: 74e0898e24b12c45c40019b8558a1310d0b2a47c
1419
+ React-jserrorhandler: 33cb327f5c6e1571b362f1a9c762ff839a5adb15
1420
+ React-jsi: 1e0be0c7526a8fdd3b9e8c086bddcddbad263cd5
1421
+ React-jsiexecutor: 04c1e790290e8cc3cd18e59c9cc5bdd18af325ef
1422
+ React-jsinspector: 5daae7b6729d84bd61026899a6f664bdcff3ac28
1423
+ React-jsitracing: 36a2bbc272300313653d980de5ab700ec86c534a
1424
+ React-logger: 03f2f7b955cfe24593a2b8c9705c23e142d1ad24
1425
+ React-Mapbuffer: 5e05d78fe6505f4a054b86f415733d4ad02dd314
1426
+ react-native-slider: ce295d2bf830a7990af05b0bd70ab28c133e230c
1427
+ react-native-track-player: 82ef1756ffeea61140fea17519ecd6d64ec3cf3e
1428
+ React-nativeconfig: 951ec32f632e81cbd7d40aebb3211313251c092e
1429
+ React-NativeModulesApple: 0b3a42ca90069119ef79d8b2327d01441d71abd4
1430
+ React-perflogger: 271f1111779fef70f9502d1d38da5132e5585230
1431
+ React-RCTActionSheet: 5d6fb9adb11ab1bfbce6695a2b785767e4658c53
1432
+ React-RCTAnimation: 86ace32c56e69b3822e7e5184ea83a79d47fc7b9
1433
+ React-RCTAppDelegate: 74b45c4e3c1c23db88385d74cf4f5a8500694527
1434
+ React-RCTBlob: fb91c62a549f004e251235c65c665c6890a923a3
1435
+ React-RCTFabric: af6b9bc4aa9dfa0af1a1bcf5d8e5c5b1f17ae99c
1436
+ React-RCTImage: b482f07cfdbe8e413edbf9d85953cecdb569472c
1437
+ React-RCTLinking: fbd73a66cab34df69b2389c17f200e4722890fd9
1438
+ React-RCTNetwork: fbdd716fbd6e53feb6d8e00eeb85e8184ad42ac8
1439
+ React-RCTSettings: 11c3051b965593988298a3f5fb39e23bf6f7df9f
1440
+ React-RCTText: f240b4d39c36c295204d29e7634a2fac450b6d29
1441
+ React-RCTVibration: 1750f80b39e1ad9b4f509f4fdf19a803f7ab0d38
1442
+ React-rendererdebug: a89ffa25c7670de8f22e0b322dfdd8333bc0d126
1443
+ React-rncore: a3ab9e7271a5c692918e2a483beb900ff0a51169
1444
+ React-RuntimeApple: cdc563e811785f675925032d3bc4092a2aaa0b82
1445
+ React-RuntimeCore: f4af3a86a6a69d31721067f17196a582da25d2fc
1446
+ React-runtimeexecutor: 4471221991b6e518466a0422fbeb2158c07c36e1
1447
+ React-RuntimeHermes: 3d9f53ac3330bb71d42f2acb9a3061a0b992be5c
1448
+ React-runtimescheduler: 7fe561d179b97cecd0c2bec0bbd08f9fd8581c26
1449
+ React-utils: f013537c3371270d2095bff1d594d00d4bc9261b
1450
+ ReactCommon: 2cde697fd80bd31da1d6448d25a5803088585219
1451
+ RNCAsyncStorage: 826b603ae9c0f88b5ac4e956801f755109fa4d5c
1452
+ RNCClipboard: 0a720adef5ec193aa0e3de24c3977222c7e52a37
1453
+ RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
1454
+ SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
1455
+ SwiftAudioEx: f6aa653770f3a0d3851edaf8d834a30aee4a7646
1456
+ Yoga: ff1d575b119f510a5de23c22a794872562078ccf
1457
+
1458
+ PODFILE CHECKSUM: 4497baca33f0b6a331adfdf072a4d6f63c4a6210
1459
+
1460
+ COCOAPODS: 1.15.2