airbridge-react-native-sdk-restricted 2.8.7 → 2.8.8

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 (138) hide show
  1. package/.github/actions/add-github-check/action.yml +78 -0
  2. package/.github/actions/add-github-comment/action.yml +48 -0
  3. package/.github/actions/add-slack-message/action.yml +32 -0
  4. package/.github/actions/edit-github-check/action.yml +59 -0
  5. package/.github/actions/edit-github-comment/action.yml +41 -0
  6. package/.github/pull_request_template.md +5 -0
  7. package/.github/readme.md +53 -0
  8. package/.github/workflows/build.yml +367 -0
  9. package/.github/workflows/gitflow.yml +20 -0
  10. package/.github/workflows/release-restricted.yml +35 -0
  11. package/.github/workflows/release.yml +32 -0
  12. package/android/.settings/org.eclipse.buildship.core.prefs +2 -0
  13. package/android/src/main/java/co/ab180/airbridge/reactnative/AirbridgeRN.java +19 -4
  14. package/android/src/main/java/co/ab180/airbridge/reactnative/ConfigReader.java +63 -40
  15. package/changelog.md +5 -0
  16. package/ios/AirbridgeRN/ARNConfigReader.h +1 -1
  17. package/ios/AirbridgeRN/ARNConfigReader.m +13 -15
  18. package/ios/AirbridgeRN/AirbridgeRN.m +23 -2
  19. package/ios/copy-config.rb +1 -1
  20. package/package.json +1 -1
  21. package/qa/.bundle/config +2 -0
  22. package/qa/.eslintrc.js +4 -0
  23. package/qa/.prettierrc.js +7 -0
  24. package/qa/.watchmanconfig +1 -0
  25. package/qa/Gemfile +9 -0
  26. package/qa/Gemfile.lock +105 -0
  27. package/qa/__tests__/App.test.tsx +17 -0
  28. package/qa/airbridge.json +7 -0
  29. package/qa/android/app/build.gradle +130 -0
  30. package/qa/android/app/debug.keystore +0 -0
  31. package/qa/android/app/google-services.json +29 -0
  32. package/qa/android/app/proguard-rules.pro +10 -0
  33. package/qa/android/app/src/debug/AndroidManifest.xml +9 -0
  34. package/qa/android/app/src/main/AndroidManifest.xml +65 -0
  35. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/ConfigurationLoader.kt +49 -0
  36. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/MainActivity.kt +35 -0
  37. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/MainApplication.kt +46 -0
  38. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/module/DeviceInfoInteractor.kt +60 -0
  39. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/module/DeviceInfoUtils.kt +115 -0
  40. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/module/IdentifiersInteractor.kt +83 -0
  41. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/module/InstallReferrerInteractor.kt +91 -0
  42. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/module/ModuleInjector.kt +22 -0
  43. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/module/PermissionInteractor.kt +55 -0
  44. package/qa/android/app/src/main/java/co/ab180/airbridge/qa/application/module/UserInfoInteractor.kt +74 -0
  45. package/qa/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  46. package/qa/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  47. package/qa/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  48. package/qa/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  49. package/qa/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  50. package/qa/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  51. package/qa/android/app/src/main/res/values/strings.xml +3 -0
  52. package/qa/android/app/src/main/res/values/styles.xml +9 -0
  53. package/qa/android/build.gradle +28 -0
  54. package/qa/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  55. package/qa/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  56. package/qa/android/gradle.properties +41 -0
  57. package/qa/android/gradlew +249 -0
  58. package/qa/android/gradlew.bat +92 -0
  59. package/qa/android/settings.gradle +4 -0
  60. package/qa/app.json +4 -0
  61. package/qa/babel.config.js +3 -0
  62. package/qa/index.js +5 -0
  63. package/qa/ios/.xcode.env +11 -0
  64. package/qa/ios/AirbridgeQA/AirbridgeQA.entitlements +17 -0
  65. package/qa/ios/AirbridgeQA/AppDelegate.h +6 -0
  66. package/qa/ios/AirbridgeQA/AppDelegate.mm +123 -0
  67. package/qa/ios/AirbridgeQA/DeviceInfoInteractor.m +14 -0
  68. package/qa/ios/AirbridgeQA/DeviceInfoInteractor.swift +151 -0
  69. package/qa/ios/AirbridgeQA/IdentifiersInteractor.m +14 -0
  70. package/qa/ios/AirbridgeQA/IdentifiersInteractor.swift +40 -0
  71. package/qa/ios/AirbridgeQA/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  72. package/qa/ios/AirbridgeQA/Images.xcassets/Contents.json +6 -0
  73. package/qa/ios/AirbridgeQA/Info.plist +66 -0
  74. package/qa/ios/AirbridgeQA/LaunchScreen.storyboard +47 -0
  75. package/qa/ios/AirbridgeQA/PermissionInteractor.m +14 -0
  76. package/qa/ios/AirbridgeQA/PermissionInteractor.swift +19 -0
  77. package/qa/ios/AirbridgeQA/PrivacyInfo.xcprivacy +39 -0
  78. package/qa/ios/AirbridgeQA/UserInfoInteractor.m +57 -0
  79. package/qa/ios/AirbridgeQA/UserInfoInteractor.swift +49 -0
  80. package/qa/ios/AirbridgeQA/main.m +10 -0
  81. package/qa/ios/AirbridgeQA.xcodeproj/project.pbxproj +771 -0
  82. package/qa/ios/AirbridgeQA.xcodeproj/xcshareddata/xcschemes/AirbridgeQA.xcscheme +88 -0
  83. package/qa/ios/AirbridgeQA.xcworkspace/contents.xcworkspacedata +10 -0
  84. package/qa/ios/AirbridgeQA.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  85. package/qa/ios/AirbridgeQATests/AirbridgeQATests.m +66 -0
  86. package/qa/ios/AirbridgeQATests/Info.plist +24 -0
  87. package/qa/ios/GoogleService-Info.plist +30 -0
  88. package/qa/ios/Library/airbridge-ios-sdk-qa-library.podspec +26 -0
  89. package/qa/ios/Podfile +44 -0
  90. package/qa/ios/Podfile.lock +1634 -0
  91. package/qa/jest.config.js +3 -0
  92. package/qa/metro.config.js +67 -0
  93. package/qa/package-lock.json +14289 -0
  94. package/qa/package.json +47 -0
  95. package/qa/resource/arrow_back.png +0 -0
  96. package/qa/resource/home.png +0 -0
  97. package/qa/resource/info.png +0 -0
  98. package/qa/resource/link.png +0 -0
  99. package/qa/resource/refresh.png +0 -0
  100. package/qa/resource/token.png +0 -0
  101. package/qa/source/App.js +58 -0
  102. package/qa/source/common/Colors.js +20 -0
  103. package/qa/source/common/FCMService.js +94 -0
  104. package/qa/source/common/Native.ts +39 -0
  105. package/qa/source/common/Storage.js +13 -0
  106. package/qa/source/common/Styles.js +39 -0
  107. package/qa/source/component/AttributeEntryInputDialog.js +117 -0
  108. package/qa/source/component/AttributeTypeInputDialog.js +100 -0
  109. package/qa/source/component/ConfirmDialog.js +72 -0
  110. package/qa/source/component/CustomButton.js +50 -0
  111. package/qa/source/component/CustomEventParamsDialog.js +150 -0
  112. package/qa/source/component/CustomTextInput.js +40 -0
  113. package/qa/source/component/EntryInputDialog.js +89 -0
  114. package/qa/source/component/HorizontalPreference.js +46 -0
  115. package/qa/source/component/ImageButton.js +35 -0
  116. package/qa/source/component/InjectInputDialog.js +80 -0
  117. package/qa/source/component/MessageDialog.js +81 -0
  118. package/qa/source/component/UrlInputDialog.js +80 -0
  119. package/qa/source/component/ValueInputDialog.js +80 -0
  120. package/qa/source/component/VerticalPreference.js +42 -0
  121. package/qa/source/navigations/Stack.js +110 -0
  122. package/qa/source/pages/Browse.js +118 -0
  123. package/qa/source/pages/DeviceInfo.js +135 -0
  124. package/qa/source/pages/Event.js +171 -0
  125. package/qa/source/pages/Home.js +136 -0
  126. package/qa/source/pages/Identifiers.js +108 -0
  127. package/qa/source/pages/InstallReferrer.js +64 -0
  128. package/qa/source/pages/Placement.js +38 -0
  129. package/qa/source/pages/RequestPermissions.tsx +41 -0
  130. package/qa/source/pages/UserInfo.js +168 -0
  131. package/qa/source/pages/appInfo.js +22 -0
  132. package/qa/tsconfig.json +3 -0
  133. package/scripts/addiOSFramework.js +48 -0
  134. package/scripts/build-qa.sh +64 -0
  135. package/scripts/change_restricted.sh +21 -0
  136. package/scripts/update_native_version.sh +104 -0
  137. package/src/State.js +10 -2
  138. package/src/WebInterface.js +1 -1
@@ -0,0 +1,1634 @@
1
+ PODS:
2
+ - AirBridge (1.37.3)
3
+ - airbridge-ios-sdk-qa-library (1.37.0)
4
+ - airbridge-react-native-sdk (2.8.6):
5
+ - AirBridge (= 1.37.3)
6
+ - React
7
+ - boost (1.83.0)
8
+ - DoubleConversion (1.1.6)
9
+ - FBLazyVector (0.74.2)
10
+ - Firebase/CoreOnly (10.27.0):
11
+ - FirebaseCore (= 10.27.0)
12
+ - Firebase/Messaging (10.27.0):
13
+ - Firebase/CoreOnly
14
+ - FirebaseMessaging (~> 10.27.0)
15
+ - FirebaseCore (10.27.0):
16
+ - FirebaseCoreInternal (~> 10.0)
17
+ - GoogleUtilities/Environment (~> 7.12)
18
+ - GoogleUtilities/Logger (~> 7.12)
19
+ - FirebaseCoreExtension (10.28.0):
20
+ - FirebaseCore (~> 10.0)
21
+ - FirebaseCoreInternal (10.28.0):
22
+ - "GoogleUtilities/NSData+zlib (~> 7.8)"
23
+ - FirebaseInstallations (10.28.0):
24
+ - FirebaseCore (~> 10.0)
25
+ - GoogleUtilities/Environment (~> 7.8)
26
+ - GoogleUtilities/UserDefaults (~> 7.8)
27
+ - PromisesObjC (~> 2.1)
28
+ - FirebaseMessaging (10.27.0):
29
+ - FirebaseCore (~> 10.0)
30
+ - FirebaseInstallations (~> 10.0)
31
+ - GoogleDataTransport (~> 9.3)
32
+ - GoogleUtilities/AppDelegateSwizzler (~> 7.8)
33
+ - GoogleUtilities/Environment (~> 7.8)
34
+ - GoogleUtilities/Reachability (~> 7.8)
35
+ - GoogleUtilities/UserDefaults (~> 7.8)
36
+ - nanopb (< 2.30911.0, >= 2.30908.0)
37
+ - fmt (9.1.0)
38
+ - glog (0.3.5)
39
+ - GoogleDataTransport (9.4.1):
40
+ - GoogleUtilities/Environment (~> 7.7)
41
+ - nanopb (< 2.30911.0, >= 2.30908.0)
42
+ - PromisesObjC (< 3.0, >= 1.2)
43
+ - GoogleUtilities (7.13.3):
44
+ - GoogleUtilities/AppDelegateSwizzler (= 7.13.3)
45
+ - GoogleUtilities/Environment (= 7.13.3)
46
+ - GoogleUtilities/ISASwizzler (= 7.13.3)
47
+ - GoogleUtilities/Logger (= 7.13.3)
48
+ - GoogleUtilities/MethodSwizzler (= 7.13.3)
49
+ - GoogleUtilities/Network (= 7.13.3)
50
+ - "GoogleUtilities/NSData+zlib (= 7.13.3)"
51
+ - GoogleUtilities/Privacy (= 7.13.3)
52
+ - GoogleUtilities/Reachability (= 7.13.3)
53
+ - GoogleUtilities/SwizzlerTestHelpers (= 7.13.3)
54
+ - GoogleUtilities/UserDefaults (= 7.13.3)
55
+ - GoogleUtilities/AppDelegateSwizzler (7.13.3):
56
+ - GoogleUtilities/Environment
57
+ - GoogleUtilities/Logger
58
+ - GoogleUtilities/Network
59
+ - GoogleUtilities/Privacy
60
+ - GoogleUtilities/Environment (7.13.3):
61
+ - GoogleUtilities/Privacy
62
+ - PromisesObjC (< 3.0, >= 1.2)
63
+ - GoogleUtilities/ISASwizzler (7.13.3):
64
+ - GoogleUtilities/Privacy
65
+ - GoogleUtilities/Logger (7.13.3):
66
+ - GoogleUtilities/Environment
67
+ - GoogleUtilities/Privacy
68
+ - GoogleUtilities/MethodSwizzler (7.13.3):
69
+ - GoogleUtilities/Logger
70
+ - GoogleUtilities/Privacy
71
+ - GoogleUtilities/Network (7.13.3):
72
+ - GoogleUtilities/Logger
73
+ - "GoogleUtilities/NSData+zlib"
74
+ - GoogleUtilities/Privacy
75
+ - GoogleUtilities/Reachability
76
+ - "GoogleUtilities/NSData+zlib (7.13.3)":
77
+ - GoogleUtilities/Privacy
78
+ - GoogleUtilities/Privacy (7.13.3)
79
+ - GoogleUtilities/Reachability (7.13.3):
80
+ - GoogleUtilities/Logger
81
+ - GoogleUtilities/Privacy
82
+ - GoogleUtilities/SwizzlerTestHelpers (7.13.3):
83
+ - GoogleUtilities/MethodSwizzler
84
+ - GoogleUtilities/UserDefaults (7.13.3):
85
+ - GoogleUtilities/Logger
86
+ - GoogleUtilities/Privacy
87
+ - hermes-engine (0.74.2):
88
+ - hermes-engine/Pre-built (= 0.74.2)
89
+ - hermes-engine/Pre-built (0.74.2)
90
+ - nanopb (2.30910.0):
91
+ - nanopb/decode (= 2.30910.0)
92
+ - nanopb/encode (= 2.30910.0)
93
+ - nanopb/decode (2.30910.0)
94
+ - nanopb/encode (2.30910.0)
95
+ - PromisesObjC (2.4.0)
96
+ - RCT-Folly (2024.01.01.00):
97
+ - boost
98
+ - DoubleConversion
99
+ - fmt (= 9.1.0)
100
+ - glog
101
+ - RCT-Folly/Default (= 2024.01.01.00)
102
+ - RCT-Folly/Default (2024.01.01.00):
103
+ - boost
104
+ - DoubleConversion
105
+ - fmt (= 9.1.0)
106
+ - glog
107
+ - RCT-Folly/Fabric (2024.01.01.00):
108
+ - boost
109
+ - DoubleConversion
110
+ - fmt (= 9.1.0)
111
+ - glog
112
+ - RCTDeprecation (0.74.2)
113
+ - RCTRequired (0.74.2)
114
+ - RCTTypeSafety (0.74.2):
115
+ - FBLazyVector (= 0.74.2)
116
+ - RCTRequired (= 0.74.2)
117
+ - React-Core (= 0.74.2)
118
+ - React (0.74.2):
119
+ - React-Core (= 0.74.2)
120
+ - React-Core/DevSupport (= 0.74.2)
121
+ - React-Core/RCTWebSocket (= 0.74.2)
122
+ - React-RCTActionSheet (= 0.74.2)
123
+ - React-RCTAnimation (= 0.74.2)
124
+ - React-RCTBlob (= 0.74.2)
125
+ - React-RCTImage (= 0.74.2)
126
+ - React-RCTLinking (= 0.74.2)
127
+ - React-RCTNetwork (= 0.74.2)
128
+ - React-RCTSettings (= 0.74.2)
129
+ - React-RCTText (= 0.74.2)
130
+ - React-RCTVibration (= 0.74.2)
131
+ - React-callinvoker (0.74.2)
132
+ - React-Codegen (0.74.2):
133
+ - DoubleConversion
134
+ - glog
135
+ - hermes-engine
136
+ - RCT-Folly
137
+ - RCTRequired
138
+ - RCTTypeSafety
139
+ - React-Core
140
+ - React-debug
141
+ - React-Fabric
142
+ - React-FabricImage
143
+ - React-featureflags
144
+ - React-graphics
145
+ - React-jsi
146
+ - React-jsiexecutor
147
+ - React-NativeModulesApple
148
+ - React-rendererdebug
149
+ - React-utils
150
+ - ReactCommon/turbomodule/bridging
151
+ - ReactCommon/turbomodule/core
152
+ - React-Core (0.74.2):
153
+ - glog
154
+ - hermes-engine
155
+ - RCT-Folly (= 2024.01.01.00)
156
+ - RCTDeprecation
157
+ - React-Core/Default (= 0.74.2)
158
+ - React-cxxreact
159
+ - React-featureflags
160
+ - React-hermes
161
+ - React-jsi
162
+ - React-jsiexecutor
163
+ - React-jsinspector
164
+ - React-perflogger
165
+ - React-runtimescheduler
166
+ - React-utils
167
+ - SocketRocket (= 0.7.0)
168
+ - Yoga
169
+ - React-Core/CoreModulesHeaders (0.74.2):
170
+ - glog
171
+ - hermes-engine
172
+ - RCT-Folly (= 2024.01.01.00)
173
+ - RCTDeprecation
174
+ - React-Core/Default
175
+ - React-cxxreact
176
+ - React-featureflags
177
+ - React-hermes
178
+ - React-jsi
179
+ - React-jsiexecutor
180
+ - React-jsinspector
181
+ - React-perflogger
182
+ - React-runtimescheduler
183
+ - React-utils
184
+ - SocketRocket (= 0.7.0)
185
+ - Yoga
186
+ - React-Core/Default (0.74.2):
187
+ - glog
188
+ - hermes-engine
189
+ - RCT-Folly (= 2024.01.01.00)
190
+ - RCTDeprecation
191
+ - React-cxxreact
192
+ - React-featureflags
193
+ - React-hermes
194
+ - React-jsi
195
+ - React-jsiexecutor
196
+ - React-jsinspector
197
+ - React-perflogger
198
+ - React-runtimescheduler
199
+ - React-utils
200
+ - SocketRocket (= 0.7.0)
201
+ - Yoga
202
+ - React-Core/DevSupport (0.74.2):
203
+ - glog
204
+ - hermes-engine
205
+ - RCT-Folly (= 2024.01.01.00)
206
+ - RCTDeprecation
207
+ - React-Core/Default (= 0.74.2)
208
+ - React-Core/RCTWebSocket (= 0.74.2)
209
+ - React-cxxreact
210
+ - React-featureflags
211
+ - React-hermes
212
+ - React-jsi
213
+ - React-jsiexecutor
214
+ - React-jsinspector
215
+ - React-perflogger
216
+ - React-runtimescheduler
217
+ - React-utils
218
+ - SocketRocket (= 0.7.0)
219
+ - Yoga
220
+ - React-Core/RCTActionSheetHeaders (0.74.2):
221
+ - glog
222
+ - hermes-engine
223
+ - RCT-Folly (= 2024.01.01.00)
224
+ - RCTDeprecation
225
+ - React-Core/Default
226
+ - React-cxxreact
227
+ - React-featureflags
228
+ - React-hermes
229
+ - React-jsi
230
+ - React-jsiexecutor
231
+ - React-jsinspector
232
+ - React-perflogger
233
+ - React-runtimescheduler
234
+ - React-utils
235
+ - SocketRocket (= 0.7.0)
236
+ - Yoga
237
+ - React-Core/RCTAnimationHeaders (0.74.2):
238
+ - glog
239
+ - hermes-engine
240
+ - RCT-Folly (= 2024.01.01.00)
241
+ - RCTDeprecation
242
+ - React-Core/Default
243
+ - React-cxxreact
244
+ - React-featureflags
245
+ - React-hermes
246
+ - React-jsi
247
+ - React-jsiexecutor
248
+ - React-jsinspector
249
+ - React-perflogger
250
+ - React-runtimescheduler
251
+ - React-utils
252
+ - SocketRocket (= 0.7.0)
253
+ - Yoga
254
+ - React-Core/RCTBlobHeaders (0.74.2):
255
+ - glog
256
+ - hermes-engine
257
+ - RCT-Folly (= 2024.01.01.00)
258
+ - RCTDeprecation
259
+ - React-Core/Default
260
+ - React-cxxreact
261
+ - React-featureflags
262
+ - React-hermes
263
+ - React-jsi
264
+ - React-jsiexecutor
265
+ - React-jsinspector
266
+ - React-perflogger
267
+ - React-runtimescheduler
268
+ - React-utils
269
+ - SocketRocket (= 0.7.0)
270
+ - Yoga
271
+ - React-Core/RCTImageHeaders (0.74.2):
272
+ - glog
273
+ - hermes-engine
274
+ - RCT-Folly (= 2024.01.01.00)
275
+ - RCTDeprecation
276
+ - React-Core/Default
277
+ - React-cxxreact
278
+ - React-featureflags
279
+ - React-hermes
280
+ - React-jsi
281
+ - React-jsiexecutor
282
+ - React-jsinspector
283
+ - React-perflogger
284
+ - React-runtimescheduler
285
+ - React-utils
286
+ - SocketRocket (= 0.7.0)
287
+ - Yoga
288
+ - React-Core/RCTLinkingHeaders (0.74.2):
289
+ - glog
290
+ - hermes-engine
291
+ - RCT-Folly (= 2024.01.01.00)
292
+ - RCTDeprecation
293
+ - React-Core/Default
294
+ - React-cxxreact
295
+ - React-featureflags
296
+ - React-hermes
297
+ - React-jsi
298
+ - React-jsiexecutor
299
+ - React-jsinspector
300
+ - React-perflogger
301
+ - React-runtimescheduler
302
+ - React-utils
303
+ - SocketRocket (= 0.7.0)
304
+ - Yoga
305
+ - React-Core/RCTNetworkHeaders (0.74.2):
306
+ - glog
307
+ - hermes-engine
308
+ - RCT-Folly (= 2024.01.01.00)
309
+ - RCTDeprecation
310
+ - React-Core/Default
311
+ - React-cxxreact
312
+ - React-featureflags
313
+ - React-hermes
314
+ - React-jsi
315
+ - React-jsiexecutor
316
+ - React-jsinspector
317
+ - React-perflogger
318
+ - React-runtimescheduler
319
+ - React-utils
320
+ - SocketRocket (= 0.7.0)
321
+ - Yoga
322
+ - React-Core/RCTSettingsHeaders (0.74.2):
323
+ - glog
324
+ - hermes-engine
325
+ - RCT-Folly (= 2024.01.01.00)
326
+ - RCTDeprecation
327
+ - React-Core/Default
328
+ - React-cxxreact
329
+ - React-featureflags
330
+ - React-hermes
331
+ - React-jsi
332
+ - React-jsiexecutor
333
+ - React-jsinspector
334
+ - React-perflogger
335
+ - React-runtimescheduler
336
+ - React-utils
337
+ - SocketRocket (= 0.7.0)
338
+ - Yoga
339
+ - React-Core/RCTTextHeaders (0.74.2):
340
+ - glog
341
+ - hermes-engine
342
+ - RCT-Folly (= 2024.01.01.00)
343
+ - RCTDeprecation
344
+ - React-Core/Default
345
+ - React-cxxreact
346
+ - React-featureflags
347
+ - React-hermes
348
+ - React-jsi
349
+ - React-jsiexecutor
350
+ - React-jsinspector
351
+ - React-perflogger
352
+ - React-runtimescheduler
353
+ - React-utils
354
+ - SocketRocket (= 0.7.0)
355
+ - Yoga
356
+ - React-Core/RCTVibrationHeaders (0.74.2):
357
+ - glog
358
+ - hermes-engine
359
+ - RCT-Folly (= 2024.01.01.00)
360
+ - RCTDeprecation
361
+ - React-Core/Default
362
+ - React-cxxreact
363
+ - React-featureflags
364
+ - React-hermes
365
+ - React-jsi
366
+ - React-jsiexecutor
367
+ - React-jsinspector
368
+ - React-perflogger
369
+ - React-runtimescheduler
370
+ - React-utils
371
+ - SocketRocket (= 0.7.0)
372
+ - Yoga
373
+ - React-Core/RCTWebSocket (0.74.2):
374
+ - glog
375
+ - hermes-engine
376
+ - RCT-Folly (= 2024.01.01.00)
377
+ - RCTDeprecation
378
+ - React-Core/Default (= 0.74.2)
379
+ - React-cxxreact
380
+ - React-featureflags
381
+ - React-hermes
382
+ - React-jsi
383
+ - React-jsiexecutor
384
+ - React-jsinspector
385
+ - React-perflogger
386
+ - React-runtimescheduler
387
+ - React-utils
388
+ - SocketRocket (= 0.7.0)
389
+ - Yoga
390
+ - React-CoreModules (0.74.2):
391
+ - DoubleConversion
392
+ - fmt (= 9.1.0)
393
+ - RCT-Folly (= 2024.01.01.00)
394
+ - RCTTypeSafety (= 0.74.2)
395
+ - React-Codegen
396
+ - React-Core/CoreModulesHeaders (= 0.74.2)
397
+ - React-jsi (= 0.74.2)
398
+ - React-jsinspector
399
+ - React-NativeModulesApple
400
+ - React-RCTBlob
401
+ - React-RCTImage (= 0.74.2)
402
+ - ReactCommon
403
+ - SocketRocket (= 0.7.0)
404
+ - React-cxxreact (0.74.2):
405
+ - boost (= 1.83.0)
406
+ - DoubleConversion
407
+ - fmt (= 9.1.0)
408
+ - glog
409
+ - hermes-engine
410
+ - RCT-Folly (= 2024.01.01.00)
411
+ - React-callinvoker (= 0.74.2)
412
+ - React-debug (= 0.74.2)
413
+ - React-jsi (= 0.74.2)
414
+ - React-jsinspector
415
+ - React-logger (= 0.74.2)
416
+ - React-perflogger (= 0.74.2)
417
+ - React-runtimeexecutor (= 0.74.2)
418
+ - React-debug (0.74.2)
419
+ - React-Fabric (0.74.2):
420
+ - DoubleConversion
421
+ - fmt (= 9.1.0)
422
+ - glog
423
+ - hermes-engine
424
+ - RCT-Folly/Fabric (= 2024.01.01.00)
425
+ - RCTRequired
426
+ - RCTTypeSafety
427
+ - React-Core
428
+ - React-cxxreact
429
+ - React-debug
430
+ - React-Fabric/animations (= 0.74.2)
431
+ - React-Fabric/attributedstring (= 0.74.2)
432
+ - React-Fabric/componentregistry (= 0.74.2)
433
+ - React-Fabric/componentregistrynative (= 0.74.2)
434
+ - React-Fabric/components (= 0.74.2)
435
+ - React-Fabric/core (= 0.74.2)
436
+ - React-Fabric/imagemanager (= 0.74.2)
437
+ - React-Fabric/leakchecker (= 0.74.2)
438
+ - React-Fabric/mounting (= 0.74.2)
439
+ - React-Fabric/scheduler (= 0.74.2)
440
+ - React-Fabric/telemetry (= 0.74.2)
441
+ - React-Fabric/templateprocessor (= 0.74.2)
442
+ - React-Fabric/textlayoutmanager (= 0.74.2)
443
+ - React-Fabric/uimanager (= 0.74.2)
444
+ - React-graphics
445
+ - React-jsi
446
+ - React-jsiexecutor
447
+ - React-logger
448
+ - React-rendererdebug
449
+ - React-runtimescheduler
450
+ - React-utils
451
+ - ReactCommon/turbomodule/core
452
+ - React-Fabric/animations (0.74.2):
453
+ - DoubleConversion
454
+ - fmt (= 9.1.0)
455
+ - glog
456
+ - hermes-engine
457
+ - RCT-Folly/Fabric (= 2024.01.01.00)
458
+ - RCTRequired
459
+ - RCTTypeSafety
460
+ - React-Core
461
+ - React-cxxreact
462
+ - React-debug
463
+ - React-graphics
464
+ - React-jsi
465
+ - React-jsiexecutor
466
+ - React-logger
467
+ - React-rendererdebug
468
+ - React-runtimescheduler
469
+ - React-utils
470
+ - ReactCommon/turbomodule/core
471
+ - React-Fabric/attributedstring (0.74.2):
472
+ - DoubleConversion
473
+ - fmt (= 9.1.0)
474
+ - glog
475
+ - hermes-engine
476
+ - RCT-Folly/Fabric (= 2024.01.01.00)
477
+ - RCTRequired
478
+ - RCTTypeSafety
479
+ - React-Core
480
+ - React-cxxreact
481
+ - React-debug
482
+ - React-graphics
483
+ - React-jsi
484
+ - React-jsiexecutor
485
+ - React-logger
486
+ - React-rendererdebug
487
+ - React-runtimescheduler
488
+ - React-utils
489
+ - ReactCommon/turbomodule/core
490
+ - React-Fabric/componentregistry (0.74.2):
491
+ - DoubleConversion
492
+ - fmt (= 9.1.0)
493
+ - glog
494
+ - hermes-engine
495
+ - RCT-Folly/Fabric (= 2024.01.01.00)
496
+ - RCTRequired
497
+ - RCTTypeSafety
498
+ - React-Core
499
+ - React-cxxreact
500
+ - React-debug
501
+ - React-graphics
502
+ - React-jsi
503
+ - React-jsiexecutor
504
+ - React-logger
505
+ - React-rendererdebug
506
+ - React-runtimescheduler
507
+ - React-utils
508
+ - ReactCommon/turbomodule/core
509
+ - React-Fabric/componentregistrynative (0.74.2):
510
+ - DoubleConversion
511
+ - fmt (= 9.1.0)
512
+ - glog
513
+ - hermes-engine
514
+ - RCT-Folly/Fabric (= 2024.01.01.00)
515
+ - RCTRequired
516
+ - RCTTypeSafety
517
+ - React-Core
518
+ - React-cxxreact
519
+ - React-debug
520
+ - React-graphics
521
+ - React-jsi
522
+ - React-jsiexecutor
523
+ - React-logger
524
+ - React-rendererdebug
525
+ - React-runtimescheduler
526
+ - React-utils
527
+ - ReactCommon/turbomodule/core
528
+ - React-Fabric/components (0.74.2):
529
+ - DoubleConversion
530
+ - fmt (= 9.1.0)
531
+ - glog
532
+ - hermes-engine
533
+ - RCT-Folly/Fabric (= 2024.01.01.00)
534
+ - RCTRequired
535
+ - RCTTypeSafety
536
+ - React-Core
537
+ - React-cxxreact
538
+ - React-debug
539
+ - React-Fabric/components/inputaccessory (= 0.74.2)
540
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.74.2)
541
+ - React-Fabric/components/modal (= 0.74.2)
542
+ - React-Fabric/components/rncore (= 0.74.2)
543
+ - React-Fabric/components/root (= 0.74.2)
544
+ - React-Fabric/components/safeareaview (= 0.74.2)
545
+ - React-Fabric/components/scrollview (= 0.74.2)
546
+ - React-Fabric/components/text (= 0.74.2)
547
+ - React-Fabric/components/textinput (= 0.74.2)
548
+ - React-Fabric/components/unimplementedview (= 0.74.2)
549
+ - React-Fabric/components/view (= 0.74.2)
550
+ - React-graphics
551
+ - React-jsi
552
+ - React-jsiexecutor
553
+ - React-logger
554
+ - React-rendererdebug
555
+ - React-runtimescheduler
556
+ - React-utils
557
+ - ReactCommon/turbomodule/core
558
+ - React-Fabric/components/inputaccessory (0.74.2):
559
+ - DoubleConversion
560
+ - fmt (= 9.1.0)
561
+ - glog
562
+ - hermes-engine
563
+ - RCT-Folly/Fabric (= 2024.01.01.00)
564
+ - RCTRequired
565
+ - RCTTypeSafety
566
+ - React-Core
567
+ - React-cxxreact
568
+ - React-debug
569
+ - React-graphics
570
+ - React-jsi
571
+ - React-jsiexecutor
572
+ - React-logger
573
+ - React-rendererdebug
574
+ - React-runtimescheduler
575
+ - React-utils
576
+ - ReactCommon/turbomodule/core
577
+ - React-Fabric/components/legacyviewmanagerinterop (0.74.2):
578
+ - DoubleConversion
579
+ - fmt (= 9.1.0)
580
+ - glog
581
+ - hermes-engine
582
+ - RCT-Folly/Fabric (= 2024.01.01.00)
583
+ - RCTRequired
584
+ - RCTTypeSafety
585
+ - React-Core
586
+ - React-cxxreact
587
+ - React-debug
588
+ - React-graphics
589
+ - React-jsi
590
+ - React-jsiexecutor
591
+ - React-logger
592
+ - React-rendererdebug
593
+ - React-runtimescheduler
594
+ - React-utils
595
+ - ReactCommon/turbomodule/core
596
+ - React-Fabric/components/modal (0.74.2):
597
+ - DoubleConversion
598
+ - fmt (= 9.1.0)
599
+ - glog
600
+ - hermes-engine
601
+ - RCT-Folly/Fabric (= 2024.01.01.00)
602
+ - RCTRequired
603
+ - RCTTypeSafety
604
+ - React-Core
605
+ - React-cxxreact
606
+ - React-debug
607
+ - React-graphics
608
+ - React-jsi
609
+ - React-jsiexecutor
610
+ - React-logger
611
+ - React-rendererdebug
612
+ - React-runtimescheduler
613
+ - React-utils
614
+ - ReactCommon/turbomodule/core
615
+ - React-Fabric/components/rncore (0.74.2):
616
+ - DoubleConversion
617
+ - fmt (= 9.1.0)
618
+ - glog
619
+ - hermes-engine
620
+ - RCT-Folly/Fabric (= 2024.01.01.00)
621
+ - RCTRequired
622
+ - RCTTypeSafety
623
+ - React-Core
624
+ - React-cxxreact
625
+ - React-debug
626
+ - React-graphics
627
+ - React-jsi
628
+ - React-jsiexecutor
629
+ - React-logger
630
+ - React-rendererdebug
631
+ - React-runtimescheduler
632
+ - React-utils
633
+ - ReactCommon/turbomodule/core
634
+ - React-Fabric/components/root (0.74.2):
635
+ - DoubleConversion
636
+ - fmt (= 9.1.0)
637
+ - glog
638
+ - hermes-engine
639
+ - RCT-Folly/Fabric (= 2024.01.01.00)
640
+ - RCTRequired
641
+ - RCTTypeSafety
642
+ - React-Core
643
+ - React-cxxreact
644
+ - React-debug
645
+ - React-graphics
646
+ - React-jsi
647
+ - React-jsiexecutor
648
+ - React-logger
649
+ - React-rendererdebug
650
+ - React-runtimescheduler
651
+ - React-utils
652
+ - ReactCommon/turbomodule/core
653
+ - React-Fabric/components/safeareaview (0.74.2):
654
+ - DoubleConversion
655
+ - fmt (= 9.1.0)
656
+ - glog
657
+ - hermes-engine
658
+ - RCT-Folly/Fabric (= 2024.01.01.00)
659
+ - RCTRequired
660
+ - RCTTypeSafety
661
+ - React-Core
662
+ - React-cxxreact
663
+ - React-debug
664
+ - React-graphics
665
+ - React-jsi
666
+ - React-jsiexecutor
667
+ - React-logger
668
+ - React-rendererdebug
669
+ - React-runtimescheduler
670
+ - React-utils
671
+ - ReactCommon/turbomodule/core
672
+ - React-Fabric/components/scrollview (0.74.2):
673
+ - DoubleConversion
674
+ - fmt (= 9.1.0)
675
+ - glog
676
+ - hermes-engine
677
+ - RCT-Folly/Fabric (= 2024.01.01.00)
678
+ - RCTRequired
679
+ - RCTTypeSafety
680
+ - React-Core
681
+ - React-cxxreact
682
+ - React-debug
683
+ - React-graphics
684
+ - React-jsi
685
+ - React-jsiexecutor
686
+ - React-logger
687
+ - React-rendererdebug
688
+ - React-runtimescheduler
689
+ - React-utils
690
+ - ReactCommon/turbomodule/core
691
+ - React-Fabric/components/text (0.74.2):
692
+ - DoubleConversion
693
+ - fmt (= 9.1.0)
694
+ - glog
695
+ - hermes-engine
696
+ - RCT-Folly/Fabric (= 2024.01.01.00)
697
+ - RCTRequired
698
+ - RCTTypeSafety
699
+ - React-Core
700
+ - React-cxxreact
701
+ - React-debug
702
+ - React-graphics
703
+ - React-jsi
704
+ - React-jsiexecutor
705
+ - React-logger
706
+ - React-rendererdebug
707
+ - React-runtimescheduler
708
+ - React-utils
709
+ - ReactCommon/turbomodule/core
710
+ - React-Fabric/components/textinput (0.74.2):
711
+ - DoubleConversion
712
+ - fmt (= 9.1.0)
713
+ - glog
714
+ - hermes-engine
715
+ - RCT-Folly/Fabric (= 2024.01.01.00)
716
+ - RCTRequired
717
+ - RCTTypeSafety
718
+ - React-Core
719
+ - React-cxxreact
720
+ - React-debug
721
+ - React-graphics
722
+ - React-jsi
723
+ - React-jsiexecutor
724
+ - React-logger
725
+ - React-rendererdebug
726
+ - React-runtimescheduler
727
+ - React-utils
728
+ - ReactCommon/turbomodule/core
729
+ - React-Fabric/components/unimplementedview (0.74.2):
730
+ - DoubleConversion
731
+ - fmt (= 9.1.0)
732
+ - glog
733
+ - hermes-engine
734
+ - RCT-Folly/Fabric (= 2024.01.01.00)
735
+ - RCTRequired
736
+ - RCTTypeSafety
737
+ - React-Core
738
+ - React-cxxreact
739
+ - React-debug
740
+ - React-graphics
741
+ - React-jsi
742
+ - React-jsiexecutor
743
+ - React-logger
744
+ - React-rendererdebug
745
+ - React-runtimescheduler
746
+ - React-utils
747
+ - ReactCommon/turbomodule/core
748
+ - React-Fabric/components/view (0.74.2):
749
+ - DoubleConversion
750
+ - fmt (= 9.1.0)
751
+ - glog
752
+ - hermes-engine
753
+ - RCT-Folly/Fabric (= 2024.01.01.00)
754
+ - RCTRequired
755
+ - RCTTypeSafety
756
+ - React-Core
757
+ - React-cxxreact
758
+ - React-debug
759
+ - React-graphics
760
+ - React-jsi
761
+ - React-jsiexecutor
762
+ - React-logger
763
+ - React-rendererdebug
764
+ - React-runtimescheduler
765
+ - React-utils
766
+ - ReactCommon/turbomodule/core
767
+ - Yoga
768
+ - React-Fabric/core (0.74.2):
769
+ - DoubleConversion
770
+ - fmt (= 9.1.0)
771
+ - glog
772
+ - hermes-engine
773
+ - RCT-Folly/Fabric (= 2024.01.01.00)
774
+ - RCTRequired
775
+ - RCTTypeSafety
776
+ - React-Core
777
+ - React-cxxreact
778
+ - React-debug
779
+ - React-graphics
780
+ - React-jsi
781
+ - React-jsiexecutor
782
+ - React-logger
783
+ - React-rendererdebug
784
+ - React-runtimescheduler
785
+ - React-utils
786
+ - ReactCommon/turbomodule/core
787
+ - React-Fabric/imagemanager (0.74.2):
788
+ - DoubleConversion
789
+ - fmt (= 9.1.0)
790
+ - glog
791
+ - hermes-engine
792
+ - RCT-Folly/Fabric (= 2024.01.01.00)
793
+ - RCTRequired
794
+ - RCTTypeSafety
795
+ - React-Core
796
+ - React-cxxreact
797
+ - React-debug
798
+ - React-graphics
799
+ - React-jsi
800
+ - React-jsiexecutor
801
+ - React-logger
802
+ - React-rendererdebug
803
+ - React-runtimescheduler
804
+ - React-utils
805
+ - ReactCommon/turbomodule/core
806
+ - React-Fabric/leakchecker (0.74.2):
807
+ - DoubleConversion
808
+ - fmt (= 9.1.0)
809
+ - glog
810
+ - hermes-engine
811
+ - RCT-Folly/Fabric (= 2024.01.01.00)
812
+ - RCTRequired
813
+ - RCTTypeSafety
814
+ - React-Core
815
+ - React-cxxreact
816
+ - React-debug
817
+ - React-graphics
818
+ - React-jsi
819
+ - React-jsiexecutor
820
+ - React-logger
821
+ - React-rendererdebug
822
+ - React-runtimescheduler
823
+ - React-utils
824
+ - ReactCommon/turbomodule/core
825
+ - React-Fabric/mounting (0.74.2):
826
+ - DoubleConversion
827
+ - fmt (= 9.1.0)
828
+ - glog
829
+ - hermes-engine
830
+ - RCT-Folly/Fabric (= 2024.01.01.00)
831
+ - RCTRequired
832
+ - RCTTypeSafety
833
+ - React-Core
834
+ - React-cxxreact
835
+ - React-debug
836
+ - React-graphics
837
+ - React-jsi
838
+ - React-jsiexecutor
839
+ - React-logger
840
+ - React-rendererdebug
841
+ - React-runtimescheduler
842
+ - React-utils
843
+ - ReactCommon/turbomodule/core
844
+ - React-Fabric/scheduler (0.74.2):
845
+ - DoubleConversion
846
+ - fmt (= 9.1.0)
847
+ - glog
848
+ - hermes-engine
849
+ - RCT-Folly/Fabric (= 2024.01.01.00)
850
+ - RCTRequired
851
+ - RCTTypeSafety
852
+ - React-Core
853
+ - React-cxxreact
854
+ - React-debug
855
+ - React-graphics
856
+ - React-jsi
857
+ - React-jsiexecutor
858
+ - React-logger
859
+ - React-rendererdebug
860
+ - React-runtimescheduler
861
+ - React-utils
862
+ - ReactCommon/turbomodule/core
863
+ - React-Fabric/telemetry (0.74.2):
864
+ - DoubleConversion
865
+ - fmt (= 9.1.0)
866
+ - glog
867
+ - hermes-engine
868
+ - RCT-Folly/Fabric (= 2024.01.01.00)
869
+ - RCTRequired
870
+ - RCTTypeSafety
871
+ - React-Core
872
+ - React-cxxreact
873
+ - React-debug
874
+ - React-graphics
875
+ - React-jsi
876
+ - React-jsiexecutor
877
+ - React-logger
878
+ - React-rendererdebug
879
+ - React-runtimescheduler
880
+ - React-utils
881
+ - ReactCommon/turbomodule/core
882
+ - React-Fabric/templateprocessor (0.74.2):
883
+ - DoubleConversion
884
+ - fmt (= 9.1.0)
885
+ - glog
886
+ - hermes-engine
887
+ - RCT-Folly/Fabric (= 2024.01.01.00)
888
+ - RCTRequired
889
+ - RCTTypeSafety
890
+ - React-Core
891
+ - React-cxxreact
892
+ - React-debug
893
+ - React-graphics
894
+ - React-jsi
895
+ - React-jsiexecutor
896
+ - React-logger
897
+ - React-rendererdebug
898
+ - React-runtimescheduler
899
+ - React-utils
900
+ - ReactCommon/turbomodule/core
901
+ - React-Fabric/textlayoutmanager (0.74.2):
902
+ - DoubleConversion
903
+ - fmt (= 9.1.0)
904
+ - glog
905
+ - hermes-engine
906
+ - RCT-Folly/Fabric (= 2024.01.01.00)
907
+ - RCTRequired
908
+ - RCTTypeSafety
909
+ - React-Core
910
+ - React-cxxreact
911
+ - React-debug
912
+ - React-Fabric/uimanager
913
+ - React-graphics
914
+ - React-jsi
915
+ - React-jsiexecutor
916
+ - React-logger
917
+ - React-rendererdebug
918
+ - React-runtimescheduler
919
+ - React-utils
920
+ - ReactCommon/turbomodule/core
921
+ - React-Fabric/uimanager (0.74.2):
922
+ - DoubleConversion
923
+ - fmt (= 9.1.0)
924
+ - glog
925
+ - hermes-engine
926
+ - RCT-Folly/Fabric (= 2024.01.01.00)
927
+ - RCTRequired
928
+ - RCTTypeSafety
929
+ - React-Core
930
+ - React-cxxreact
931
+ - React-debug
932
+ - React-graphics
933
+ - React-jsi
934
+ - React-jsiexecutor
935
+ - React-logger
936
+ - React-rendererdebug
937
+ - React-runtimescheduler
938
+ - React-utils
939
+ - ReactCommon/turbomodule/core
940
+ - React-FabricImage (0.74.2):
941
+ - DoubleConversion
942
+ - fmt (= 9.1.0)
943
+ - glog
944
+ - hermes-engine
945
+ - RCT-Folly/Fabric (= 2024.01.01.00)
946
+ - RCTRequired (= 0.74.2)
947
+ - RCTTypeSafety (= 0.74.2)
948
+ - React-Fabric
949
+ - React-graphics
950
+ - React-ImageManager
951
+ - React-jsi
952
+ - React-jsiexecutor (= 0.74.2)
953
+ - React-logger
954
+ - React-rendererdebug
955
+ - React-utils
956
+ - ReactCommon
957
+ - Yoga
958
+ - React-featureflags (0.74.2)
959
+ - React-graphics (0.74.2):
960
+ - DoubleConversion
961
+ - fmt (= 9.1.0)
962
+ - glog
963
+ - RCT-Folly/Fabric (= 2024.01.01.00)
964
+ - React-Core/Default (= 0.74.2)
965
+ - React-utils
966
+ - React-hermes (0.74.2):
967
+ - DoubleConversion
968
+ - fmt (= 9.1.0)
969
+ - glog
970
+ - hermes-engine
971
+ - RCT-Folly (= 2024.01.01.00)
972
+ - React-cxxreact (= 0.74.2)
973
+ - React-jsi
974
+ - React-jsiexecutor (= 0.74.2)
975
+ - React-jsinspector
976
+ - React-perflogger (= 0.74.2)
977
+ - React-runtimeexecutor
978
+ - React-ImageManager (0.74.2):
979
+ - glog
980
+ - RCT-Folly/Fabric
981
+ - React-Core/Default
982
+ - React-debug
983
+ - React-Fabric
984
+ - React-graphics
985
+ - React-rendererdebug
986
+ - React-utils
987
+ - React-jserrorhandler (0.74.2):
988
+ - RCT-Folly/Fabric (= 2024.01.01.00)
989
+ - React-debug
990
+ - React-jsi
991
+ - React-Mapbuffer
992
+ - React-jsi (0.74.2):
993
+ - boost (= 1.83.0)
994
+ - DoubleConversion
995
+ - fmt (= 9.1.0)
996
+ - glog
997
+ - hermes-engine
998
+ - RCT-Folly (= 2024.01.01.00)
999
+ - React-jsiexecutor (0.74.2):
1000
+ - DoubleConversion
1001
+ - fmt (= 9.1.0)
1002
+ - glog
1003
+ - hermes-engine
1004
+ - RCT-Folly (= 2024.01.01.00)
1005
+ - React-cxxreact (= 0.74.2)
1006
+ - React-jsi (= 0.74.2)
1007
+ - React-jsinspector
1008
+ - React-perflogger (= 0.74.2)
1009
+ - React-jsinspector (0.74.2):
1010
+ - DoubleConversion
1011
+ - glog
1012
+ - hermes-engine
1013
+ - RCT-Folly (= 2024.01.01.00)
1014
+ - React-featureflags
1015
+ - React-jsi
1016
+ - React-runtimeexecutor (= 0.74.2)
1017
+ - React-jsitracing (0.74.2):
1018
+ - React-jsi
1019
+ - React-logger (0.74.2):
1020
+ - glog
1021
+ - React-Mapbuffer (0.74.2):
1022
+ - glog
1023
+ - React-debug
1024
+ - react-native-safe-area-context (4.10.5):
1025
+ - React-Core
1026
+ - react-native-simple-toast (3.3.1):
1027
+ - React-Core
1028
+ - Toast (~> 4)
1029
+ - react-native-webview (13.10.4):
1030
+ - DoubleConversion
1031
+ - glog
1032
+ - hermes-engine
1033
+ - RCT-Folly (= 2024.01.01.00)
1034
+ - RCTRequired
1035
+ - RCTTypeSafety
1036
+ - React-Codegen
1037
+ - React-Core
1038
+ - React-debug
1039
+ - React-Fabric
1040
+ - React-featureflags
1041
+ - React-graphics
1042
+ - React-ImageManager
1043
+ - React-NativeModulesApple
1044
+ - React-RCTFabric
1045
+ - React-rendererdebug
1046
+ - React-utils
1047
+ - ReactCommon/turbomodule/bridging
1048
+ - ReactCommon/turbomodule/core
1049
+ - Yoga
1050
+ - React-nativeconfig (0.74.2)
1051
+ - React-NativeModulesApple (0.74.2):
1052
+ - glog
1053
+ - hermes-engine
1054
+ - React-callinvoker
1055
+ - React-Core
1056
+ - React-cxxreact
1057
+ - React-jsi
1058
+ - React-jsinspector
1059
+ - React-runtimeexecutor
1060
+ - ReactCommon/turbomodule/bridging
1061
+ - ReactCommon/turbomodule/core
1062
+ - React-perflogger (0.74.2)
1063
+ - React-RCTActionSheet (0.74.2):
1064
+ - React-Core/RCTActionSheetHeaders (= 0.74.2)
1065
+ - React-RCTAnimation (0.74.2):
1066
+ - RCT-Folly (= 2024.01.01.00)
1067
+ - RCTTypeSafety
1068
+ - React-Codegen
1069
+ - React-Core/RCTAnimationHeaders
1070
+ - React-jsi
1071
+ - React-NativeModulesApple
1072
+ - ReactCommon
1073
+ - React-RCTAppDelegate (0.74.2):
1074
+ - RCT-Folly (= 2024.01.01.00)
1075
+ - RCTRequired
1076
+ - RCTTypeSafety
1077
+ - React-Codegen
1078
+ - React-Core
1079
+ - React-CoreModules
1080
+ - React-debug
1081
+ - React-Fabric
1082
+ - React-featureflags
1083
+ - React-graphics
1084
+ - React-hermes
1085
+ - React-nativeconfig
1086
+ - React-NativeModulesApple
1087
+ - React-RCTFabric
1088
+ - React-RCTImage
1089
+ - React-RCTNetwork
1090
+ - React-rendererdebug
1091
+ - React-RuntimeApple
1092
+ - React-RuntimeCore
1093
+ - React-RuntimeHermes
1094
+ - React-runtimescheduler
1095
+ - React-utils
1096
+ - ReactCommon
1097
+ - React-RCTBlob (0.74.2):
1098
+ - DoubleConversion
1099
+ - fmt (= 9.1.0)
1100
+ - hermes-engine
1101
+ - RCT-Folly (= 2024.01.01.00)
1102
+ - React-Codegen
1103
+ - React-Core/RCTBlobHeaders
1104
+ - React-Core/RCTWebSocket
1105
+ - React-jsi
1106
+ - React-jsinspector
1107
+ - React-NativeModulesApple
1108
+ - React-RCTNetwork
1109
+ - ReactCommon
1110
+ - React-RCTFabric (0.74.2):
1111
+ - glog
1112
+ - hermes-engine
1113
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1114
+ - React-Core
1115
+ - React-debug
1116
+ - React-Fabric
1117
+ - React-FabricImage
1118
+ - React-featureflags
1119
+ - React-graphics
1120
+ - React-ImageManager
1121
+ - React-jsi
1122
+ - React-jsinspector
1123
+ - React-nativeconfig
1124
+ - React-RCTImage
1125
+ - React-RCTText
1126
+ - React-rendererdebug
1127
+ - React-runtimescheduler
1128
+ - React-utils
1129
+ - Yoga
1130
+ - React-RCTImage (0.74.2):
1131
+ - RCT-Folly (= 2024.01.01.00)
1132
+ - RCTTypeSafety
1133
+ - React-Codegen
1134
+ - React-Core/RCTImageHeaders
1135
+ - React-jsi
1136
+ - React-NativeModulesApple
1137
+ - React-RCTNetwork
1138
+ - ReactCommon
1139
+ - React-RCTLinking (0.74.2):
1140
+ - React-Codegen
1141
+ - React-Core/RCTLinkingHeaders (= 0.74.2)
1142
+ - React-jsi (= 0.74.2)
1143
+ - React-NativeModulesApple
1144
+ - ReactCommon
1145
+ - ReactCommon/turbomodule/core (= 0.74.2)
1146
+ - React-RCTNetwork (0.74.2):
1147
+ - RCT-Folly (= 2024.01.01.00)
1148
+ - RCTTypeSafety
1149
+ - React-Codegen
1150
+ - React-Core/RCTNetworkHeaders
1151
+ - React-jsi
1152
+ - React-NativeModulesApple
1153
+ - ReactCommon
1154
+ - React-RCTSettings (0.74.2):
1155
+ - RCT-Folly (= 2024.01.01.00)
1156
+ - RCTTypeSafety
1157
+ - React-Codegen
1158
+ - React-Core/RCTSettingsHeaders
1159
+ - React-jsi
1160
+ - React-NativeModulesApple
1161
+ - ReactCommon
1162
+ - React-RCTText (0.74.2):
1163
+ - React-Core/RCTTextHeaders (= 0.74.2)
1164
+ - Yoga
1165
+ - React-RCTVibration (0.74.2):
1166
+ - RCT-Folly (= 2024.01.01.00)
1167
+ - React-Codegen
1168
+ - React-Core/RCTVibrationHeaders
1169
+ - React-jsi
1170
+ - React-NativeModulesApple
1171
+ - ReactCommon
1172
+ - React-rendererdebug (0.74.2):
1173
+ - DoubleConversion
1174
+ - fmt (= 9.1.0)
1175
+ - RCT-Folly (= 2024.01.01.00)
1176
+ - React-debug
1177
+ - React-rncore (0.74.2)
1178
+ - React-RuntimeApple (0.74.2):
1179
+ - hermes-engine
1180
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1181
+ - React-callinvoker
1182
+ - React-Core/Default
1183
+ - React-CoreModules
1184
+ - React-cxxreact
1185
+ - React-jserrorhandler
1186
+ - React-jsi
1187
+ - React-jsiexecutor
1188
+ - React-jsinspector
1189
+ - React-Mapbuffer
1190
+ - React-NativeModulesApple
1191
+ - React-RCTFabric
1192
+ - React-RuntimeCore
1193
+ - React-runtimeexecutor
1194
+ - React-RuntimeHermes
1195
+ - React-utils
1196
+ - React-RuntimeCore (0.74.2):
1197
+ - glog
1198
+ - hermes-engine
1199
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1200
+ - React-cxxreact
1201
+ - React-featureflags
1202
+ - React-jserrorhandler
1203
+ - React-jsi
1204
+ - React-jsiexecutor
1205
+ - React-jsinspector
1206
+ - React-runtimeexecutor
1207
+ - React-runtimescheduler
1208
+ - React-utils
1209
+ - React-runtimeexecutor (0.74.2):
1210
+ - React-jsi (= 0.74.2)
1211
+ - React-RuntimeHermes (0.74.2):
1212
+ - hermes-engine
1213
+ - RCT-Folly/Fabric (= 2024.01.01.00)
1214
+ - React-featureflags
1215
+ - React-hermes
1216
+ - React-jsi
1217
+ - React-jsinspector
1218
+ - React-jsitracing
1219
+ - React-nativeconfig
1220
+ - React-RuntimeCore
1221
+ - React-utils
1222
+ - React-runtimescheduler (0.74.2):
1223
+ - glog
1224
+ - hermes-engine
1225
+ - RCT-Folly (= 2024.01.01.00)
1226
+ - React-callinvoker
1227
+ - React-cxxreact
1228
+ - React-debug
1229
+ - React-featureflags
1230
+ - React-jsi
1231
+ - React-rendererdebug
1232
+ - React-runtimeexecutor
1233
+ - React-utils
1234
+ - React-utils (0.74.2):
1235
+ - glog
1236
+ - hermes-engine
1237
+ - RCT-Folly (= 2024.01.01.00)
1238
+ - React-debug
1239
+ - React-jsi (= 0.74.2)
1240
+ - ReactCommon (0.74.2):
1241
+ - ReactCommon/turbomodule (= 0.74.2)
1242
+ - ReactCommon/turbomodule (0.74.2):
1243
+ - DoubleConversion
1244
+ - fmt (= 9.1.0)
1245
+ - glog
1246
+ - hermes-engine
1247
+ - RCT-Folly (= 2024.01.01.00)
1248
+ - React-callinvoker (= 0.74.2)
1249
+ - React-cxxreact (= 0.74.2)
1250
+ - React-jsi (= 0.74.2)
1251
+ - React-logger (= 0.74.2)
1252
+ - React-perflogger (= 0.74.2)
1253
+ - ReactCommon/turbomodule/bridging (= 0.74.2)
1254
+ - ReactCommon/turbomodule/core (= 0.74.2)
1255
+ - ReactCommon/turbomodule/bridging (0.74.2):
1256
+ - DoubleConversion
1257
+ - fmt (= 9.1.0)
1258
+ - glog
1259
+ - hermes-engine
1260
+ - RCT-Folly (= 2024.01.01.00)
1261
+ - React-callinvoker (= 0.74.2)
1262
+ - React-cxxreact (= 0.74.2)
1263
+ - React-jsi (= 0.74.2)
1264
+ - React-logger (= 0.74.2)
1265
+ - React-perflogger (= 0.74.2)
1266
+ - ReactCommon/turbomodule/core (0.74.2):
1267
+ - DoubleConversion
1268
+ - fmt (= 9.1.0)
1269
+ - glog
1270
+ - hermes-engine
1271
+ - RCT-Folly (= 2024.01.01.00)
1272
+ - React-callinvoker (= 0.74.2)
1273
+ - React-cxxreact (= 0.74.2)
1274
+ - React-debug (= 0.74.2)
1275
+ - React-jsi (= 0.74.2)
1276
+ - React-logger (= 0.74.2)
1277
+ - React-perflogger (= 0.74.2)
1278
+ - React-utils (= 0.74.2)
1279
+ - RNCMaskedView (0.3.1):
1280
+ - React-Core
1281
+ - RNFBApp (20.1.0):
1282
+ - Firebase/CoreOnly (= 10.27.0)
1283
+ - React-Core
1284
+ - RNFBMessaging (20.1.0):
1285
+ - Firebase/Messaging (= 10.27.0)
1286
+ - FirebaseCoreExtension
1287
+ - React-Core
1288
+ - RNFBApp
1289
+ - RNGestureHandler (2.17.1):
1290
+ - DoubleConversion
1291
+ - glog
1292
+ - hermes-engine
1293
+ - RCT-Folly (= 2024.01.01.00)
1294
+ - RCTRequired
1295
+ - RCTTypeSafety
1296
+ - React-Codegen
1297
+ - React-Core
1298
+ - React-debug
1299
+ - React-Fabric
1300
+ - React-featureflags
1301
+ - React-graphics
1302
+ - React-ImageManager
1303
+ - React-NativeModulesApple
1304
+ - React-RCTFabric
1305
+ - React-rendererdebug
1306
+ - React-utils
1307
+ - ReactCommon/turbomodule/bridging
1308
+ - ReactCommon/turbomodule/core
1309
+ - Yoga
1310
+ - RNScreens (3.32.0):
1311
+ - DoubleConversion
1312
+ - glog
1313
+ - hermes-engine
1314
+ - RCT-Folly (= 2024.01.01.00)
1315
+ - RCTRequired
1316
+ - RCTTypeSafety
1317
+ - React-Codegen
1318
+ - React-Core
1319
+ - React-debug
1320
+ - React-Fabric
1321
+ - React-featureflags
1322
+ - React-graphics
1323
+ - React-ImageManager
1324
+ - React-NativeModulesApple
1325
+ - React-RCTFabric
1326
+ - React-RCTImage
1327
+ - React-rendererdebug
1328
+ - React-utils
1329
+ - ReactCommon/turbomodule/bridging
1330
+ - ReactCommon/turbomodule/core
1331
+ - Yoga
1332
+ - SocketRocket (0.7.0)
1333
+ - Toast (4.1.1)
1334
+ - Yoga (0.0.0)
1335
+
1336
+ DEPENDENCIES:
1337
+ - airbridge-ios-sdk-qa-library (from `Library/airbridge-ios-sdk-qa-library.podspec`)
1338
+ - airbridge-react-native-sdk (from `../node_modules/airbridge-react-native-sdk`)
1339
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1340
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1341
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1342
+ - FirebaseCore
1343
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1344
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1345
+ - GoogleUtilities
1346
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1347
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1348
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1349
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1350
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1351
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1352
+ - React (from `../node_modules/react-native/`)
1353
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1354
+ - React-Codegen (from `build/generated/ios`)
1355
+ - React-Core (from `../node_modules/react-native/`)
1356
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1357
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1358
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1359
+ - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1360
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1361
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1362
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1363
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1364
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1365
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1366
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1367
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1368
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1369
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1370
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1371
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1372
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1373
+ - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
1374
+ - react-native-simple-toast (from `../node_modules/react-native-simple-toast`)
1375
+ - react-native-webview (from `../node_modules/react-native-webview`)
1376
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
1377
+ - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1378
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1379
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1380
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1381
+ - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1382
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1383
+ - React-RCTFabric (from `../node_modules/react-native/React`)
1384
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1385
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1386
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1387
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1388
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1389
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1390
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1391
+ - React-rncore (from `../node_modules/react-native/ReactCommon`)
1392
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1393
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1394
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1395
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1396
+ - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1397
+ - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1398
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1399
+ - "RNCMaskedView (from `../node_modules/@react-native-masked-view/masked-view`)"
1400
+ - "RNFBApp (from `../node_modules/@react-native-firebase/app`)"
1401
+ - "RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`)"
1402
+ - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
1403
+ - RNScreens (from `../node_modules/react-native-screens`)
1404
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1405
+
1406
+ SPEC REPOS:
1407
+ trunk:
1408
+ - AirBridge
1409
+ - Firebase
1410
+ - FirebaseCore
1411
+ - FirebaseCoreExtension
1412
+ - FirebaseCoreInternal
1413
+ - FirebaseInstallations
1414
+ - FirebaseMessaging
1415
+ - GoogleDataTransport
1416
+ - GoogleUtilities
1417
+ - nanopb
1418
+ - PromisesObjC
1419
+ - SocketRocket
1420
+ - Toast
1421
+
1422
+ EXTERNAL SOURCES:
1423
+ airbridge-ios-sdk-qa-library:
1424
+ :podspec: Library/airbridge-ios-sdk-qa-library.podspec
1425
+ airbridge-react-native-sdk:
1426
+ :path: "../node_modules/airbridge-react-native-sdk"
1427
+ boost:
1428
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1429
+ DoubleConversion:
1430
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1431
+ FBLazyVector:
1432
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
1433
+ fmt:
1434
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1435
+ glog:
1436
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1437
+ hermes-engine:
1438
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1439
+ :tag: hermes-2024-06-03-RNv0.74.2-bb1e74fe1e95c2b5a2f4f9311152da052badc2bc
1440
+ RCT-Folly:
1441
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1442
+ RCTDeprecation:
1443
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1444
+ RCTRequired:
1445
+ :path: "../node_modules/react-native/Libraries/Required"
1446
+ RCTTypeSafety:
1447
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
1448
+ React:
1449
+ :path: "../node_modules/react-native/"
1450
+ React-callinvoker:
1451
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
1452
+ React-Codegen:
1453
+ :path: build/generated/ios
1454
+ React-Core:
1455
+ :path: "../node_modules/react-native/"
1456
+ React-CoreModules:
1457
+ :path: "../node_modules/react-native/React/CoreModules"
1458
+ React-cxxreact:
1459
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
1460
+ React-debug:
1461
+ :path: "../node_modules/react-native/ReactCommon/react/debug"
1462
+ React-Fabric:
1463
+ :path: "../node_modules/react-native/ReactCommon"
1464
+ React-FabricImage:
1465
+ :path: "../node_modules/react-native/ReactCommon"
1466
+ React-featureflags:
1467
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1468
+ React-graphics:
1469
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1470
+ React-hermes:
1471
+ :path: "../node_modules/react-native/ReactCommon/hermes"
1472
+ React-ImageManager:
1473
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1474
+ React-jserrorhandler:
1475
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1476
+ React-jsi:
1477
+ :path: "../node_modules/react-native/ReactCommon/jsi"
1478
+ React-jsiexecutor:
1479
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1480
+ React-jsinspector:
1481
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1482
+ React-jsitracing:
1483
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1484
+ React-logger:
1485
+ :path: "../node_modules/react-native/ReactCommon/logger"
1486
+ React-Mapbuffer:
1487
+ :path: "../node_modules/react-native/ReactCommon"
1488
+ react-native-safe-area-context:
1489
+ :path: "../node_modules/react-native-safe-area-context"
1490
+ react-native-simple-toast:
1491
+ :path: "../node_modules/react-native-simple-toast"
1492
+ react-native-webview:
1493
+ :path: "../node_modules/react-native-webview"
1494
+ React-nativeconfig:
1495
+ :path: "../node_modules/react-native/ReactCommon"
1496
+ React-NativeModulesApple:
1497
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1498
+ React-perflogger:
1499
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1500
+ React-RCTActionSheet:
1501
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1502
+ React-RCTAnimation:
1503
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
1504
+ React-RCTAppDelegate:
1505
+ :path: "../node_modules/react-native/Libraries/AppDelegate"
1506
+ React-RCTBlob:
1507
+ :path: "../node_modules/react-native/Libraries/Blob"
1508
+ React-RCTFabric:
1509
+ :path: "../node_modules/react-native/React"
1510
+ React-RCTImage:
1511
+ :path: "../node_modules/react-native/Libraries/Image"
1512
+ React-RCTLinking:
1513
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
1514
+ React-RCTNetwork:
1515
+ :path: "../node_modules/react-native/Libraries/Network"
1516
+ React-RCTSettings:
1517
+ :path: "../node_modules/react-native/Libraries/Settings"
1518
+ React-RCTText:
1519
+ :path: "../node_modules/react-native/Libraries/Text"
1520
+ React-RCTVibration:
1521
+ :path: "../node_modules/react-native/Libraries/Vibration"
1522
+ React-rendererdebug:
1523
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1524
+ React-rncore:
1525
+ :path: "../node_modules/react-native/ReactCommon"
1526
+ React-RuntimeApple:
1527
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1528
+ React-RuntimeCore:
1529
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1530
+ React-runtimeexecutor:
1531
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1532
+ React-RuntimeHermes:
1533
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
1534
+ React-runtimescheduler:
1535
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1536
+ React-utils:
1537
+ :path: "../node_modules/react-native/ReactCommon/react/utils"
1538
+ ReactCommon:
1539
+ :path: "../node_modules/react-native/ReactCommon"
1540
+ RNCMaskedView:
1541
+ :path: "../node_modules/@react-native-masked-view/masked-view"
1542
+ RNFBApp:
1543
+ :path: "../node_modules/@react-native-firebase/app"
1544
+ RNFBMessaging:
1545
+ :path: "../node_modules/@react-native-firebase/messaging"
1546
+ RNGestureHandler:
1547
+ :path: "../node_modules/react-native-gesture-handler"
1548
+ RNScreens:
1549
+ :path: "../node_modules/react-native-screens"
1550
+ Yoga:
1551
+ :path: "../node_modules/react-native/ReactCommon/yoga"
1552
+
1553
+ SPEC CHECKSUMS:
1554
+ AirBridge: ba285f4e0bee8d2b1967b212689830f30e51b2da
1555
+ airbridge-ios-sdk-qa-library: bb492ce8a91c879f6448b3109fc58ef14521d638
1556
+ airbridge-react-native-sdk: 05bbb3316787ac375cc40b50685282bd2fd29d0f
1557
+ boost: d3f49c53809116a5d38da093a8aa78bf551aed09
1558
+ DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5
1559
+ FBLazyVector: 4bc164e5b5e6cfc288d2b5ff28643ea15fa1a589
1560
+ Firebase: 26b040b20866a55f55eb3611b9fcf3ae64816b86
1561
+ FirebaseCore: a2b95ae4ce7c83ceecfbbbe3b6f1cddc7415a808
1562
+ FirebaseCoreExtension: f63147b723e2a700fe0f34ec6fb7f358d6fe83e0
1563
+ FirebaseCoreInternal: 58d07f1362fddeb0feb6a857d1d1d1c5e558e698
1564
+ FirebaseInstallations: 60c1d3bc1beef809fd1ad1189a8057a040c59f2e
1565
+ FirebaseMessaging: 585984d0a1df120617eb10b44cad8968b859815e
1566
+ fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120
1567
+ glog: fdfdfe5479092de0c4bdbebedd9056951f092c4f
1568
+ GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a
1569
+ GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15
1570
+ hermes-engine: 01d3e052018c2a13937aca1860fbedbccd4a41b7
1571
+ nanopb: 438bc412db1928dac798aa6fd75726007be04262
1572
+ PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47
1573
+ RCT-Folly: 02617c592a293bd6d418e0a88ff4ee1f88329b47
1574
+ RCTDeprecation: b03c35057846b685b3ccadc9bfe43e349989cdb2
1575
+ RCTRequired: 194626909cfa8d39ca6663138c417bc6c431648c
1576
+ RCTTypeSafety: 552aff5b8e8341660594db00e53ac889682bc120
1577
+ React: a57fe42044fe6ed3e828f8867ce070a6c5872754
1578
+ React-callinvoker: 6bedefb354a8848b534752417954caa3a5cf34f9
1579
+ React-Codegen: 0952549a095f8f8cb2fb5def1733b6b232769b1c
1580
+ React-Core: 289ee3dfc1639bb9058c1e77427bb48169c26d7a
1581
+ React-CoreModules: eda5ce541a1f552158317abd90a5a0f6a4f8d6f7
1582
+ React-cxxreact: 56bd17ccc6d4248116f7f95884ddb8c528379fb6
1583
+ React-debug: 164b8e302404d92d4bec39778a5e03bcb1b6eb08
1584
+ React-Fabric: 05620c36074e3ab397dd8f9db0deb6d3c38b4efa
1585
+ React-FabricImage: 2a8a7f5729f5c44e32e6f58f7225ee1017ed0704
1586
+ React-featureflags: d97a6393993052e951e16a3b81206e22110be8d2
1587
+ React-graphics: ef07d701f4eb72ae6fca6ed0a7260a04f2a58dec
1588
+ React-hermes: 6ccc301ababfa17a9aad25a7e33faf325fd024b4
1589
+ React-ImageManager: 00404bfe122626bc6493621f2a31ce802115a9b3
1590
+ React-jserrorhandler: 5e2632590a84363855b2083e6b3d501e93bc3f04
1591
+ React-jsi: 828703c235f4eea1647897ee8030efdc6e8e9f14
1592
+ React-jsiexecutor: 713d7bbef0a410cee5b3b78f73ed1fc16e177ba7
1593
+ React-jsinspector: e1fa5325a47f34645195c63e3312ddb6a2efef5d
1594
+ React-jsitracing: 0fa7f78d8fdda794667cb2e6f19c874c1cf31d7e
1595
+ React-logger: 29fa3e048f5f67fe396bc08af7606426d9bd7b5d
1596
+ React-Mapbuffer: bf56147c9775491e53122a94c423ac201417e326
1597
+ react-native-safe-area-context: a240ad4b683349e48b1d51fed1611138d1bdad97
1598
+ react-native-simple-toast: 1f1cc551d419bc0ab05dcb0136554006c274789d
1599
+ react-native-webview: 596fb33d67a3cde5a74bf1f6b4c28d3543477fdd
1600
+ React-nativeconfig: 9f223cd321823afdecf59ed00861ab2d69ee0fc1
1601
+ React-NativeModulesApple: ff7efaff7098639db5631236cfd91d60abff04c0
1602
+ React-perflogger: 32ed45d9cee02cf6639acae34251590dccd30994
1603
+ React-RCTActionSheet: 19f967ddaea258182b56ef11437133b056ba2adf
1604
+ React-RCTAnimation: d7f4137fc44a08bba465267ea7cb1dbdb7c4ec87
1605
+ React-RCTAppDelegate: 2b3f4d8009796af209a0d496e73276b743acee08
1606
+ React-RCTBlob: c6c3e1e0251700b7bea036b893913f22e2b9cb47
1607
+ React-RCTFabric: 93a3ea55169d19294f07092013c1c9ea7a015c9b
1608
+ React-RCTImage: 40528ab74a4fef0f0e2ee797a074b26d120b6cc6
1609
+ React-RCTLinking: 385b5beb96749aae9ae1606746e883e1c9f8a6a7
1610
+ React-RCTNetwork: ffc9f05bd8fa5b3bce562199ba41235ad0af645c
1611
+ React-RCTSettings: 21914178bb65cb2c20c655ae1fb401617ae74618
1612
+ React-RCTText: 7f8dba1a311e99f4de15bbace2350e805f33f024
1613
+ React-RCTVibration: e4ccf673579d0d94a96b3a0b64492db08f8324d5
1614
+ React-rendererdebug: ac70f40de137ce7bdbc55eaee60c467a215d9923
1615
+ React-rncore: edfff7a3f7f82ca1e0ba26978c6d84c7a8970dac
1616
+ React-RuntimeApple: a0c98b75571aa5f44ddc7c6e9fd55803fa4db00f
1617
+ React-RuntimeCore: 4b8db1fe2f3f4a3a5ecb22e1a419824e3e2cd7ef
1618
+ React-runtimeexecutor: 5961acc7a77b69f964e1645a5d6069e124ce6b37
1619
+ React-RuntimeHermes: c5825bfae4815fdf4e9e639340c3a986a491884c
1620
+ React-runtimescheduler: 56b642bf605ba5afa500d35790928fc1d51565ad
1621
+ React-utils: 4476b7fcbbd95cfd002f3e778616155241d86e31
1622
+ ReactCommon: ecad995f26e0d1e24061f60f4e5d74782f003f12
1623
+ RNCMaskedView: 090213d32d8b3bb83a4dcb7d12c18f0152591906
1624
+ RNFBApp: 1ae7462cddf74a49df206d3418bc0170f8fa53e5
1625
+ RNFBMessaging: 85f661b9f16e2b081e6809ef63d3daa4458b9042
1626
+ RNGestureHandler: 8dbcccada4a7e702e7dec9338c251b1cf393c960
1627
+ RNScreens: 5aeecbb09aa7285379b6e9f3c8a3c859bb16401c
1628
+ SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
1629
+ Toast: 1f5ea13423a1e6674c4abdac5be53587ae481c4e
1630
+ Yoga: ae3c32c514802d30f687a04a6a35b348506d411f
1631
+
1632
+ PODFILE CHECKSUM: e2f1e98522fc60e2f132c58753de66d682e636c6
1633
+
1634
+ COCOAPODS: 1.15.2