@xrnjs/app-template 0.0.6 → 0.1.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 (124) hide show
  1. package/$package.json +30 -36
  2. package/android/app/build.gradle +56 -73
  3. package/android/app/src/debug/java/com/xrn/template/ReactNativeFlipper.java +23 -44
  4. package/android/app/src/main/assets/xrn-manifest.json +1 -1
  5. package/android/app/src/main/java/com/xrn/template/MainApplication.kt +54 -65
  6. package/android/app/src/main/java/com/xrn/template/multibundle/CodePushBundleActivity.kt +65 -0
  7. package/android/app/src/main/java/com/xrn/template/multibundle/CodePushJSBundleLoader.kt +18 -0
  8. package/android/app/src/main/java/com/xrn/template/multibundle/CodePushUtils.kt +263 -0
  9. package/android/app/src/main/java/com/xrn/template/multibundle/XBundleTool.kt +9 -0
  10. package/android/app/src/main/java/com/xrn/template/multibundle/XRNReactHostDelegate.kt +56 -0
  11. package/android/app/src/main/java/com/xrn/template/navigation/XBundleActivity.kt +10 -7
  12. package/android/app/src/main/res/raw/bundle_config.json +2 -6
  13. package/android/build.gradle +40 -39
  14. package/android/buildSrc/build.gradle.kts +15 -0
  15. package/android/gradle/wrapper/gradle-wrapper.properties +3 -1
  16. package/android/gradle.properties +17 -10
  17. package/android/settings.gradle +40 -12
  18. package/harmony/.clang-tidy +1 -1
  19. package/harmony/.clangd +3 -1
  20. package/harmony/AppScope/app.json5 +1 -1
  21. package/harmony/build-profile.json5 +8 -8
  22. package/harmony/entry/oh-package-lock.json5 +283 -262
  23. package/harmony/entry/oh-package.json5 +35 -36
  24. package/harmony/entry/src/main/cpp/CMakeLists.txt +37 -17
  25. package/harmony/entry/src/main/cpp/PackageProvider.cpp +20 -2
  26. package/harmony/entry/src/main/cpp/generated/BundleNavigation.cpp +3 -0
  27. package/harmony/entry/src/main/cpp/generated/RNOHGeneratedPackage.h +31 -87
  28. package/harmony/entry/src/main/cpp/generated/RTNCodePush.cpp +7 -1
  29. package/harmony/entry/src/main/cpp/generated/XRNBundleModule.cpp +9 -0
  30. package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.cpp +10 -0
  31. package/harmony/entry/src/main/cpp/generated/{ImageResizer.cpp → XRNImageView.cpp} +6 -3
  32. package/harmony/entry/src/main/cpp/generated/{ImageResizer.h → XRNImageView.h} +2 -2
  33. package/harmony/entry/src/main/cpp/generated/{RNCWebViewComponentDescriptor.h → XRNImageViewComponentDescriptor.h} +11 -10
  34. package/harmony/entry/src/main/cpp/generated/XRNImageViewJSIBinder.h +58 -0
  35. package/harmony/entry/src/main/cpp/generated/XRNKeyboard.cpp +23 -0
  36. package/harmony/entry/src/main/cpp/generated/{RNLocalize.h → XRNKeyboard.h} +2 -2
  37. package/harmony/entry/src/main/cpp/generated/XRNNavigation.cpp +5 -0
  38. package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.cpp → XRNNetworkModule.cpp} +2 -4
  39. package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.h → XRNNetworkModule.h} +2 -2
  40. package/harmony/entry/src/main/ets/BundleHelper.ets +41 -45
  41. package/harmony/entry/src/main/ets/MainAbilityStage.ets +9 -4
  42. package/harmony/entry/src/main/ets/entryability/EntryAbility.ets +1 -1
  43. package/harmony/entry/src/main/ets/navDestination/BizModuleContainer.ets +2 -2
  44. package/harmony/entry/src/main/ets/navDestination/MainModuleContainer.ets +2 -2
  45. package/harmony/entry/src/main/ets/navDestination/Splash.ets +1 -2
  46. package/harmony/entry/src/main/ets/pages/Index.ets +4 -4
  47. package/harmony/entry/src/main/resources/rawfile/bundle_config.json5 +2 -6
  48. package/harmony/entry/src/main/resources/rawfile/xrn-manifest.json +1 -0
  49. package/harmony/oh-package-lock.json5 +2 -1
  50. package/harmony/oh-package.json5 +12 -4
  51. package/index.ts +0 -0
  52. package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.h +16 -0
  53. package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.mm +40 -0
  54. package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.h +15 -0
  55. package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.m +22 -0
  56. package/ios/BundleEventCenter/XTBundleProvider.m +98 -72
  57. package/ios/BundleEventCenter/XTBundleViewControllerFactory.m +4 -15
  58. package/ios/BundleEventCenter/bundleController/XTBundleViewController.mm +43 -0
  59. package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.mm +48 -0
  60. package/ios/BundleEventCenter/bundleController/xtBundles.plist +1 -1
  61. package/ios/Podfile +234 -151
  62. package/ios/Podfile.lock +2810 -594
  63. package/ios/RNDebug/DebugPlugin/XTPluginManage.m +5 -5
  64. package/ios/RNDebug/MotroTools/XTMetroAutoConnector.h +21 -0
  65. package/ios/RNDebug/MotroTools/XTMetroAutoConnector.m +124 -0
  66. package/ios/RNDebug/MotroTools/XTReloadCommandHelper.h +30 -0
  67. package/ios/RNDebug/MotroTools/XTReloadCommandHelper.mm +128 -0
  68. package/ios/RNDebug/Views/XTScanQRPlugin.swift +9 -4
  69. package/ios/XRNTemplate/AppDelegate.h +3 -3
  70. package/ios/XRNTemplate/AppDelegate.mm +40 -102
  71. package/ios/XRNTemplate/Info.plist +4 -4
  72. package/ios/XRNTemplate/PrivacyInfo.xcprivacy +48 -0
  73. package/ios/XRNTemplate-Bridging-Header.h +2 -1
  74. package/ios/XRNTemplate.xcodeproj/project.pbxproj +68 -77
  75. package/ios/ios_patches/fixed_glog_config.h +195 -0
  76. package/ios/ios_patches/xt_IQKeyboardManager+Position.swift +1341 -0
  77. package/ios/ios_patches/xt_IQKeyboardManager.swift +454 -0
  78. package/ios/subBundles/.gitkeep +0 -0
  79. package/main-bundle/babel.config.js +2 -2
  80. package/main-bundle/package.json +11 -20
  81. package/main-bundle/yarn.lock +14655 -9651
  82. package/metro.config.js +21 -0
  83. package/package.json +2 -2
  84. package/react-native.config.js +3 -45
  85. package/src/.gitkeep +0 -0
  86. package/sub-bundle/babel.config.js +2 -2
  87. package/sub-bundle/package.json +11 -20
  88. package/sub-bundle/react-native.config.js +4 -0
  89. package/sub-bundle/yarn.lock +14655 -9651
  90. package/xrn.config.json +12 -12
  91. package/android/app/src/main/java/com/xrn/template/multibundle/XDevSupportParams.kt +0 -6
  92. package/android/app/src/main/java/com/xrn/template/multibundle/XRNHostParams.kt +0 -82
  93. package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.cpp +0 -21
  94. package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.h +0 -21
  95. package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.cpp +0 -21
  96. package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.h +0 -21
  97. package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.cpp +0 -22
  98. package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.h +0 -21
  99. package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.cpp +0 -31
  100. package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.h +0 -21
  101. package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.cpp +0 -28
  102. package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.h +0 -21
  103. package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.cpp +0 -26
  104. package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.h +0 -21
  105. package/harmony/entry/src/main/cpp/generated/RNCWebViewJSIBinder.h +0 -120
  106. package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.cpp +0 -164
  107. package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.h +0 -21
  108. package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.cpp +0 -24
  109. package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.h +0 -21
  110. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonComponentDescriptor.h +0 -43
  111. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonJSIBinder.h +0 -38
  112. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.cpp +0 -28
  113. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.h +0 -21
  114. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewComponentDescriptor.h +0 -43
  115. package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewJSIBinder.h +0 -31
  116. package/harmony/entry/src/main/cpp/generated/RNLocalize.cpp +0 -31
  117. package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.cpp +0 -51
  118. package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.h +0 -21
  119. package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.cpp +0 -21
  120. package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.h +0 -21
  121. package/harmony/entry/src/main/cpp/generated/XRNFileModule.cpp +0 -22
  122. package/harmony/entry/src/main/cpp/generated/XRNFileModule.h +0 -21
  123. package/ios/BundleEventCenter/bundleController/XTBundleViewController.m +0 -35
  124. package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.m +0 -41
package/ios/Podfile.lock CHANGED
@@ -3,82 +3,41 @@ PODS:
3
3
  - Adjust/Core (= 4.38.0)
4
4
  - Adjust/Core (4.38.0)
5
5
  - Base64 (1.1.2)
6
- - boost (1.76.0)
7
- - CocoaAsyncSocket (7.6.5)
8
- - CodePush (0.0.1-alpha.1):
9
- - Base64 (~> 1.1)
6
+ - boost (1.84.0)
7
+ - CodePush (0.1.0):
8
+ - Base64 (= 1.1.2)
9
+ - DoubleConversion
10
+ - glog
11
+ - hermes-engine
10
12
  - JWT (= 3.0.0-beta.12)
13
+ - RCT-Folly (= 2024.11.18.00)
14
+ - RCTRequired
15
+ - RCTTypeSafety
11
16
  - React
17
+ - React-Core
18
+ - React-debug
19
+ - React-Fabric
20
+ - React-featureflags
21
+ - React-graphics
22
+ - React-ImageManager
23
+ - React-NativeModulesApple
24
+ - React-RCTFabric
25
+ - React-rendererdebug
26
+ - React-utils
27
+ - ReactCodegen
28
+ - ReactCommon/turbomodule/bridging
29
+ - ReactCommon/turbomodule/core
12
30
  - SSZipArchive (= 2.2.2)
31
+ - Yoga
13
32
  - DoubleConversion (1.1.6)
14
- - FBLazyVector (0.72.5)
15
- - FBReactNativeSpec (0.72.5):
16
- - RCT-Folly (= 2021.07.22.00)
17
- - RCTRequired (= 0.72.5)
18
- - RCTTypeSafety (= 0.72.5)
19
- - React-Core (= 0.72.5)
20
- - React-jsi (= 0.72.5)
21
- - ReactCommon/turbomodule/core (= 0.72.5)
22
- - Flipper (0.182.0):
23
- - Flipper-Folly (~> 2.6)
24
- - Flipper-Boost-iOSX (1.76.0.1.11)
25
- - Flipper-DoubleConversion (3.2.0.1)
26
- - Flipper-Fmt (7.1.7)
27
- - Flipper-Folly (2.6.10):
28
- - Flipper-Boost-iOSX
29
- - Flipper-DoubleConversion
30
- - Flipper-Fmt (= 7.1.7)
31
- - Flipper-Glog
32
- - libevent (~> 2.1.12)
33
- - OpenSSL-Universal (= 1.1.1100)
34
- - Flipper-Glog (0.5.0.5)
35
- - Flipper-PeerTalk (0.0.4)
36
- - FlipperKit (0.182.0):
37
- - FlipperKit/Core (= 0.182.0)
38
- - FlipperKit/Core (0.182.0):
39
- - Flipper (~> 0.182.0)
40
- - FlipperKit/CppBridge
41
- - FlipperKit/FBCxxFollyDynamicConvert
42
- - FlipperKit/FBDefines
43
- - FlipperKit/FKPortForwarding
44
- - SocketRocket (~> 0.6.0)
45
- - FlipperKit/CppBridge (0.182.0):
46
- - Flipper (~> 0.182.0)
47
- - FlipperKit/FBCxxFollyDynamicConvert (0.182.0):
48
- - Flipper-Folly (~> 2.6)
49
- - FlipperKit/FBDefines (0.182.0)
50
- - FlipperKit/FKPortForwarding (0.182.0):
51
- - CocoaAsyncSocket (~> 7.6)
52
- - Flipper-PeerTalk (~> 0.0.4)
53
- - FlipperKit/FlipperKitHighlightOverlay (0.182.0)
54
- - FlipperKit/FlipperKitLayoutHelpers (0.182.0):
55
- - FlipperKit/Core
56
- - FlipperKit/FlipperKitHighlightOverlay
57
- - FlipperKit/FlipperKitLayoutTextSearchable
58
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.182.0):
59
- - FlipperKit/Core
60
- - FlipperKit/FlipperKitHighlightOverlay
61
- - FlipperKit/FlipperKitLayoutHelpers
62
- - YogaKit (~> 1.18)
63
- - FlipperKit/FlipperKitLayoutPlugin (0.182.0):
64
- - FlipperKit/Core
65
- - FlipperKit/FlipperKitHighlightOverlay
66
- - FlipperKit/FlipperKitLayoutHelpers
67
- - FlipperKit/FlipperKitLayoutIOSDescriptors
68
- - FlipperKit/FlipperKitLayoutTextSearchable
69
- - YogaKit (~> 1.18)
70
- - FlipperKit/FlipperKitLayoutTextSearchable (0.182.0)
71
- - FlipperKit/FlipperKitNetworkPlugin (0.182.0):
72
- - FlipperKit/Core
73
- - FlipperKit/FlipperKitReactPlugin (0.182.0):
74
- - FlipperKit/Core
75
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.182.0):
76
- - FlipperKit/Core
77
- - FlipperKit/SKIOSNetworkPlugin (0.182.0):
78
- - FlipperKit/Core
79
- - FlipperKit/FlipperKitNetworkPlugin
80
- - fmt (6.2.1)
33
+ - fast_float (6.1.4)
34
+ - FBLazyVector (0.77.1)
35
+ - fmt (11.0.2)
81
36
  - glog (0.3.5)
37
+ - hermes-engine (0.77.1):
38
+ - hermes-engine/Pre-built (= 0.77.1)
39
+ - hermes-engine/Pre-built (0.77.1)
40
+ - IQKeyboardManagerSwift (6.5.16)
82
41
  - JRSwizzle (2.0.0)
83
42
  - JWT (3.0.0-beta.12):
84
43
  - Base64 (~> 1.1.2)
@@ -87,479 +46,2561 @@ PODS:
87
46
  - libavif/core
88
47
  - libdav1d (>= 0.6.0)
89
48
  - libdav1d (1.2.0)
90
- - libevent (2.1.12)
91
- - libwebp (1.5.0):
92
- - libwebp/demux (= 1.5.0)
93
- - libwebp/mux (= 1.5.0)
94
- - libwebp/sharpyuv (= 1.5.0)
95
- - libwebp/webp (= 1.5.0)
96
- - libwebp/demux (1.5.0):
49
+ - libwebp (1.6.0):
50
+ - libwebp/demux (= 1.6.0)
51
+ - libwebp/mux (= 1.6.0)
52
+ - libwebp/sharpyuv (= 1.6.0)
53
+ - libwebp/webp (= 1.6.0)
54
+ - libwebp/demux (1.6.0):
97
55
  - libwebp/webp
98
- - libwebp/mux (1.5.0):
56
+ - libwebp/mux (1.6.0):
99
57
  - libwebp/demux
100
- - libwebp/sharpyuv (1.5.0)
101
- - libwebp/webp (1.5.0):
58
+ - libwebp/sharpyuv (1.6.0)
59
+ - libwebp/webp (1.6.0):
102
60
  - libwebp/sharpyuv
103
- - lottie-ios (4.3.4)
61
+ - lottie-ios (4.5.0)
62
+ - lottie-react-native (7.2.2):
63
+ - DoubleConversion
64
+ - glog
65
+ - hermes-engine
66
+ - lottie-ios (= 4.5.0)
67
+ - RCT-Folly (= 2024.11.18.00)
68
+ - RCTRequired
69
+ - RCTTypeSafety
70
+ - React-Core
71
+ - React-debug
72
+ - React-Fabric
73
+ - React-featureflags
74
+ - React-graphics
75
+ - React-ImageManager
76
+ - React-NativeModulesApple
77
+ - React-RCTFabric
78
+ - React-rendererdebug
79
+ - React-utils
80
+ - ReactCodegen
81
+ - ReactCommon/turbomodule/bridging
82
+ - ReactCommon/turbomodule/core
83
+ - Yoga
104
84
  - MBProgressHUD (1.2.0)
105
- - OpenSSL-Universal (1.1.1100)
106
- - RCT-Folly (2021.07.22.00):
85
+ - Onfido (32.6.3)
86
+ - onfido-react-native-sdk (15.3.0):
87
+ - Onfido (~> 32.6.0)
88
+ - React
89
+ - RCT-Folly (2024.11.18.00):
107
90
  - boost
108
91
  - DoubleConversion
109
- - fmt (~> 6.2.1)
92
+ - fast_float (= 6.1.4)
93
+ - fmt (= 11.0.2)
110
94
  - glog
111
- - RCT-Folly/Default (= 2021.07.22.00)
112
- - RCT-Folly/Default (2021.07.22.00):
95
+ - RCT-Folly/Default (= 2024.11.18.00)
96
+ - RCT-Folly/Default (2024.11.18.00):
113
97
  - boost
114
98
  - DoubleConversion
115
- - fmt (~> 6.2.1)
116
- - glog
117
- - RCTRequired (0.72.5)
118
- - RCTTypeSafety (0.72.5):
119
- - FBLazyVector (= 0.72.5)
120
- - RCTRequired (= 0.72.5)
121
- - React-Core (= 0.72.5)
122
- - React (0.72.5):
123
- - React-Core (= 0.72.5)
124
- - React-Core/DevSupport (= 0.72.5)
125
- - React-Core/RCTWebSocket (= 0.72.5)
126
- - React-RCTActionSheet (= 0.72.5)
127
- - React-RCTAnimation (= 0.72.5)
128
- - React-RCTBlob (= 0.72.5)
129
- - React-RCTImage (= 0.72.5)
130
- - React-RCTLinking (= 0.72.5)
131
- - React-RCTNetwork (= 0.72.5)
132
- - React-RCTSettings (= 0.72.5)
133
- - React-RCTText (= 0.72.5)
134
- - React-RCTVibration (= 0.72.5)
135
- - React-callinvoker (0.72.5)
136
- - React-Codegen (0.72.5):
137
- - DoubleConversion
138
- - FBReactNativeSpec
99
+ - fast_float (= 6.1.4)
100
+ - fmt (= 11.0.2)
139
101
  - glog
140
- - RCT-Folly
141
- - RCTRequired
142
- - RCTTypeSafety
143
- - React-Core
144
- - React-jsc
102
+ - RCT-Folly/Fabric (2024.11.18.00):
103
+ - boost
104
+ - DoubleConversion
105
+ - fast_float (= 6.1.4)
106
+ - fmt (= 11.0.2)
107
+ - glog
108
+ - RCTDeprecation (0.77.1)
109
+ - RCTRequired (0.77.1)
110
+ - RCTTypeSafety (0.77.1):
111
+ - FBLazyVector (= 0.77.1)
112
+ - RCTRequired (= 0.77.1)
113
+ - React-Core (= 0.77.1)
114
+ - React (0.77.1):
115
+ - React-Core (= 0.77.1)
116
+ - React-Core/DevSupport (= 0.77.1)
117
+ - React-Core/RCTWebSocket (= 0.77.1)
118
+ - React-RCTActionSheet (= 0.77.1)
119
+ - React-RCTAnimation (= 0.77.1)
120
+ - React-RCTBlob (= 0.77.1)
121
+ - React-RCTImage (= 0.77.1)
122
+ - React-RCTLinking (= 0.77.1)
123
+ - React-RCTNetwork (= 0.77.1)
124
+ - React-RCTSettings (= 0.77.1)
125
+ - React-RCTText (= 0.77.1)
126
+ - React-RCTVibration (= 0.77.1)
127
+ - React-callinvoker (0.77.1)
128
+ - React-Codegen (0.1.0)
129
+ - React-Core (0.77.1):
130
+ - glog
131
+ - hermes-engine
132
+ - RCT-Folly (= 2024.11.18.00)
133
+ - RCTDeprecation
134
+ - React-Core/Default (= 0.77.1)
135
+ - React-cxxreact
136
+ - React-featureflags
137
+ - React-hermes
145
138
  - React-jsi
146
139
  - React-jsiexecutor
147
- - React-NativeModulesApple
148
- - React-rncore
149
- - ReactCommon/turbomodule/bridging
150
- - ReactCommon/turbomodule/core
151
- - React-Core (0.72.5):
140
+ - React-jsinspector
141
+ - React-perflogger
142
+ - React-runtimescheduler
143
+ - React-utils
144
+ - SocketRocket (= 0.7.1)
145
+ - Yoga
146
+ - React-Core/CoreModulesHeaders (0.77.1):
152
147
  - glog
153
- - RCT-Folly (= 2021.07.22.00)
154
- - React-Core/Default (= 0.72.5)
148
+ - hermes-engine
149
+ - RCT-Folly (= 2024.11.18.00)
150
+ - RCTDeprecation
151
+ - React-Core/Default
155
152
  - React-cxxreact
156
- - React-jsc
153
+ - React-featureflags
154
+ - React-hermes
157
155
  - React-jsi
158
156
  - React-jsiexecutor
157
+ - React-jsinspector
159
158
  - React-perflogger
160
- - React-runtimeexecutor
159
+ - React-runtimescheduler
160
+ - React-utils
161
+ - SocketRocket (= 0.7.1)
162
+ - Yoga
163
+ - React-Core/Default (0.77.1):
164
+ - glog
165
+ - hermes-engine
166
+ - RCT-Folly (= 2024.11.18.00)
167
+ - RCTDeprecation
168
+ - React-cxxreact
169
+ - React-featureflags
170
+ - React-hermes
171
+ - React-jsi
172
+ - React-jsiexecutor
173
+ - React-jsinspector
174
+ - React-perflogger
175
+ - React-runtimescheduler
176
+ - React-utils
177
+ - SocketRocket (= 0.7.1)
178
+ - Yoga
179
+ - React-Core/DevSupport (0.77.1):
180
+ - glog
181
+ - hermes-engine
182
+ - RCT-Folly (= 2024.11.18.00)
183
+ - RCTDeprecation
184
+ - React-Core/Default (= 0.77.1)
185
+ - React-Core/RCTWebSocket (= 0.77.1)
186
+ - React-cxxreact
187
+ - React-featureflags
188
+ - React-hermes
189
+ - React-jsi
190
+ - React-jsiexecutor
191
+ - React-jsinspector
192
+ - React-perflogger
193
+ - React-runtimescheduler
161
194
  - React-utils
162
- - SocketRocket (= 0.6.1)
195
+ - SocketRocket (= 0.7.1)
163
196
  - Yoga
164
- - React-Core/CoreModulesHeaders (0.72.5):
197
+ - React-Core/RCTActionSheetHeaders (0.77.1):
165
198
  - glog
166
- - RCT-Folly (= 2021.07.22.00)
199
+ - hermes-engine
200
+ - RCT-Folly (= 2024.11.18.00)
201
+ - RCTDeprecation
167
202
  - React-Core/Default
168
203
  - React-cxxreact
169
- - React-jsc
204
+ - React-featureflags
205
+ - React-hermes
170
206
  - React-jsi
171
207
  - React-jsiexecutor
208
+ - React-jsinspector
172
209
  - React-perflogger
173
- - React-runtimeexecutor
210
+ - React-runtimescheduler
174
211
  - React-utils
175
- - SocketRocket (= 0.6.1)
212
+ - SocketRocket (= 0.7.1)
176
213
  - Yoga
177
- - React-Core/Default (0.72.5):
214
+ - React-Core/RCTAnimationHeaders (0.77.1):
178
215
  - glog
179
- - RCT-Folly (= 2021.07.22.00)
216
+ - hermes-engine
217
+ - RCT-Folly (= 2024.11.18.00)
218
+ - RCTDeprecation
219
+ - React-Core/Default
180
220
  - React-cxxreact
181
- - React-jsc
221
+ - React-featureflags
222
+ - React-hermes
182
223
  - React-jsi
183
224
  - React-jsiexecutor
225
+ - React-jsinspector
184
226
  - React-perflogger
185
- - React-runtimeexecutor
227
+ - React-runtimescheduler
228
+ - React-utils
229
+ - SocketRocket (= 0.7.1)
230
+ - Yoga
231
+ - React-Core/RCTBlobHeaders (0.77.1):
232
+ - glog
233
+ - hermes-engine
234
+ - RCT-Folly (= 2024.11.18.00)
235
+ - RCTDeprecation
236
+ - React-Core/Default
237
+ - React-cxxreact
238
+ - React-featureflags
239
+ - React-hermes
240
+ - React-jsi
241
+ - React-jsiexecutor
242
+ - React-jsinspector
243
+ - React-perflogger
244
+ - React-runtimescheduler
186
245
  - React-utils
187
- - SocketRocket (= 0.6.1)
246
+ - SocketRocket (= 0.7.1)
188
247
  - Yoga
189
- - React-Core/DevSupport (0.72.5):
248
+ - React-Core/RCTImageHeaders (0.77.1):
190
249
  - glog
191
- - RCT-Folly (= 2021.07.22.00)
192
- - React-Core/Default (= 0.72.5)
193
- - React-Core/RCTWebSocket (= 0.72.5)
250
+ - hermes-engine
251
+ - RCT-Folly (= 2024.11.18.00)
252
+ - RCTDeprecation
253
+ - React-Core/Default
194
254
  - React-cxxreact
195
- - React-jsc
255
+ - React-featureflags
256
+ - React-hermes
196
257
  - React-jsi
197
258
  - React-jsiexecutor
198
- - React-jsinspector (= 0.72.5)
259
+ - React-jsinspector
199
260
  - React-perflogger
200
- - React-runtimeexecutor
261
+ - React-runtimescheduler
262
+ - React-utils
263
+ - SocketRocket (= 0.7.1)
264
+ - Yoga
265
+ - React-Core/RCTLinkingHeaders (0.77.1):
266
+ - glog
267
+ - hermes-engine
268
+ - RCT-Folly (= 2024.11.18.00)
269
+ - RCTDeprecation
270
+ - React-Core/Default
271
+ - React-cxxreact
272
+ - React-featureflags
273
+ - React-hermes
274
+ - React-jsi
275
+ - React-jsiexecutor
276
+ - React-jsinspector
277
+ - React-perflogger
278
+ - React-runtimescheduler
279
+ - React-utils
280
+ - SocketRocket (= 0.7.1)
281
+ - Yoga
282
+ - React-Core/RCTNetworkHeaders (0.77.1):
283
+ - glog
284
+ - hermes-engine
285
+ - RCT-Folly (= 2024.11.18.00)
286
+ - RCTDeprecation
287
+ - React-Core/Default
288
+ - React-cxxreact
289
+ - React-featureflags
290
+ - React-hermes
291
+ - React-jsi
292
+ - React-jsiexecutor
293
+ - React-jsinspector
294
+ - React-perflogger
295
+ - React-runtimescheduler
296
+ - React-utils
297
+ - SocketRocket (= 0.7.1)
298
+ - Yoga
299
+ - React-Core/RCTSettingsHeaders (0.77.1):
300
+ - glog
301
+ - hermes-engine
302
+ - RCT-Folly (= 2024.11.18.00)
303
+ - RCTDeprecation
304
+ - React-Core/Default
305
+ - React-cxxreact
306
+ - React-featureflags
307
+ - React-hermes
308
+ - React-jsi
309
+ - React-jsiexecutor
310
+ - React-jsinspector
311
+ - React-perflogger
312
+ - React-runtimescheduler
313
+ - React-utils
314
+ - SocketRocket (= 0.7.1)
315
+ - Yoga
316
+ - React-Core/RCTTextHeaders (0.77.1):
317
+ - glog
318
+ - hermes-engine
319
+ - RCT-Folly (= 2024.11.18.00)
320
+ - RCTDeprecation
321
+ - React-Core/Default
322
+ - React-cxxreact
323
+ - React-featureflags
324
+ - React-hermes
325
+ - React-jsi
326
+ - React-jsiexecutor
327
+ - React-jsinspector
328
+ - React-perflogger
329
+ - React-runtimescheduler
330
+ - React-utils
331
+ - SocketRocket (= 0.7.1)
332
+ - Yoga
333
+ - React-Core/RCTVibrationHeaders (0.77.1):
334
+ - glog
335
+ - hermes-engine
336
+ - RCT-Folly (= 2024.11.18.00)
337
+ - RCTDeprecation
338
+ - React-Core/Default
339
+ - React-cxxreact
340
+ - React-featureflags
341
+ - React-hermes
342
+ - React-jsi
343
+ - React-jsiexecutor
344
+ - React-jsinspector
345
+ - React-perflogger
346
+ - React-runtimescheduler
347
+ - React-utils
348
+ - SocketRocket (= 0.7.1)
349
+ - Yoga
350
+ - React-Core/RCTWebSocket (0.77.1):
351
+ - glog
352
+ - hermes-engine
353
+ - RCT-Folly (= 2024.11.18.00)
354
+ - RCTDeprecation
355
+ - React-Core/Default (= 0.77.1)
356
+ - React-cxxreact
357
+ - React-featureflags
358
+ - React-hermes
359
+ - React-jsi
360
+ - React-jsiexecutor
361
+ - React-jsinspector
362
+ - React-perflogger
363
+ - React-runtimescheduler
364
+ - React-utils
365
+ - SocketRocket (= 0.7.1)
366
+ - Yoga
367
+ - React-CoreModules (0.77.1):
368
+ - DoubleConversion
369
+ - fast_float (= 6.1.4)
370
+ - fmt (= 11.0.2)
371
+ - RCT-Folly (= 2024.11.18.00)
372
+ - RCTTypeSafety (= 0.77.1)
373
+ - React-Core/CoreModulesHeaders (= 0.77.1)
374
+ - React-jsi (= 0.77.1)
375
+ - React-jsinspector
376
+ - React-NativeModulesApple
377
+ - React-RCTBlob
378
+ - React-RCTFBReactNativeSpec
379
+ - React-RCTImage (= 0.77.1)
380
+ - ReactCommon
381
+ - SocketRocket (= 0.7.1)
382
+ - React-cxxreact (0.77.1):
383
+ - boost
384
+ - DoubleConversion
385
+ - fast_float (= 6.1.4)
386
+ - fmt (= 11.0.2)
387
+ - glog
388
+ - hermes-engine
389
+ - RCT-Folly (= 2024.11.18.00)
390
+ - React-callinvoker (= 0.77.1)
391
+ - React-debug (= 0.77.1)
392
+ - React-jsi (= 0.77.1)
393
+ - React-jsinspector
394
+ - React-logger (= 0.77.1)
395
+ - React-perflogger (= 0.77.1)
396
+ - React-runtimeexecutor (= 0.77.1)
397
+ - React-timing (= 0.77.1)
398
+ - React-debug (0.77.1)
399
+ - React-defaultsnativemodule (0.77.1):
400
+ - hermes-engine
401
+ - RCT-Folly
402
+ - React-domnativemodule
403
+ - React-featureflagsnativemodule
404
+ - React-idlecallbacksnativemodule
405
+ - React-jsi
406
+ - React-jsiexecutor
407
+ - React-microtasksnativemodule
408
+ - React-RCTFBReactNativeSpec
409
+ - React-domnativemodule (0.77.1):
410
+ - hermes-engine
411
+ - RCT-Folly
412
+ - React-Fabric
413
+ - React-FabricComponents
414
+ - React-graphics
415
+ - React-jsi
416
+ - React-jsiexecutor
417
+ - React-RCTFBReactNativeSpec
418
+ - ReactCommon/turbomodule/core
419
+ - Yoga
420
+ - React-Fabric (0.77.1):
421
+ - DoubleConversion
422
+ - fast_float (= 6.1.4)
423
+ - fmt (= 11.0.2)
424
+ - glog
425
+ - hermes-engine
426
+ - RCT-Folly/Fabric (= 2024.11.18.00)
427
+ - RCTRequired
428
+ - RCTTypeSafety
429
+ - React-Core
430
+ - React-cxxreact
431
+ - React-debug
432
+ - React-Fabric/animations (= 0.77.1)
433
+ - React-Fabric/attributedstring (= 0.77.1)
434
+ - React-Fabric/componentregistry (= 0.77.1)
435
+ - React-Fabric/componentregistrynative (= 0.77.1)
436
+ - React-Fabric/components (= 0.77.1)
437
+ - React-Fabric/core (= 0.77.1)
438
+ - React-Fabric/dom (= 0.77.1)
439
+ - React-Fabric/imagemanager (= 0.77.1)
440
+ - React-Fabric/leakchecker (= 0.77.1)
441
+ - React-Fabric/mounting (= 0.77.1)
442
+ - React-Fabric/observers (= 0.77.1)
443
+ - React-Fabric/scheduler (= 0.77.1)
444
+ - React-Fabric/telemetry (= 0.77.1)
445
+ - React-Fabric/templateprocessor (= 0.77.1)
446
+ - React-Fabric/uimanager (= 0.77.1)
447
+ - React-featureflags
448
+ - React-graphics
449
+ - React-jsi
450
+ - React-jsiexecutor
451
+ - React-logger
452
+ - React-rendererdebug
453
+ - React-runtimescheduler
454
+ - React-utils
455
+ - ReactCommon/turbomodule/core
456
+ - React-Fabric/animations (0.77.1):
457
+ - DoubleConversion
458
+ - fast_float (= 6.1.4)
459
+ - fmt (= 11.0.2)
460
+ - glog
461
+ - hermes-engine
462
+ - RCT-Folly/Fabric (= 2024.11.18.00)
463
+ - RCTRequired
464
+ - RCTTypeSafety
465
+ - React-Core
466
+ - React-cxxreact
467
+ - React-debug
468
+ - React-featureflags
469
+ - React-graphics
470
+ - React-jsi
471
+ - React-jsiexecutor
472
+ - React-logger
473
+ - React-rendererdebug
474
+ - React-runtimescheduler
475
+ - React-utils
476
+ - ReactCommon/turbomodule/core
477
+ - React-Fabric/attributedstring (0.77.1):
478
+ - DoubleConversion
479
+ - fast_float (= 6.1.4)
480
+ - fmt (= 11.0.2)
481
+ - glog
482
+ - hermes-engine
483
+ - RCT-Folly/Fabric (= 2024.11.18.00)
484
+ - RCTRequired
485
+ - RCTTypeSafety
486
+ - React-Core
487
+ - React-cxxreact
488
+ - React-debug
489
+ - React-featureflags
490
+ - React-graphics
491
+ - React-jsi
492
+ - React-jsiexecutor
493
+ - React-logger
494
+ - React-rendererdebug
495
+ - React-runtimescheduler
496
+ - React-utils
497
+ - ReactCommon/turbomodule/core
498
+ - React-Fabric/componentregistry (0.77.1):
499
+ - DoubleConversion
500
+ - fast_float (= 6.1.4)
501
+ - fmt (= 11.0.2)
502
+ - glog
503
+ - hermes-engine
504
+ - RCT-Folly/Fabric (= 2024.11.18.00)
505
+ - RCTRequired
506
+ - RCTTypeSafety
507
+ - React-Core
508
+ - React-cxxreact
509
+ - React-debug
510
+ - React-featureflags
511
+ - React-graphics
512
+ - React-jsi
513
+ - React-jsiexecutor
514
+ - React-logger
515
+ - React-rendererdebug
516
+ - React-runtimescheduler
517
+ - React-utils
518
+ - ReactCommon/turbomodule/core
519
+ - React-Fabric/componentregistrynative (0.77.1):
520
+ - DoubleConversion
521
+ - fast_float (= 6.1.4)
522
+ - fmt (= 11.0.2)
523
+ - glog
524
+ - hermes-engine
525
+ - RCT-Folly/Fabric (= 2024.11.18.00)
526
+ - RCTRequired
527
+ - RCTTypeSafety
528
+ - React-Core
529
+ - React-cxxreact
530
+ - React-debug
531
+ - React-featureflags
532
+ - React-graphics
533
+ - React-jsi
534
+ - React-jsiexecutor
535
+ - React-logger
536
+ - React-rendererdebug
537
+ - React-runtimescheduler
538
+ - React-utils
539
+ - ReactCommon/turbomodule/core
540
+ - React-Fabric/components (0.77.1):
541
+ - DoubleConversion
542
+ - fast_float (= 6.1.4)
543
+ - fmt (= 11.0.2)
544
+ - glog
545
+ - hermes-engine
546
+ - RCT-Folly/Fabric (= 2024.11.18.00)
547
+ - RCTRequired
548
+ - RCTTypeSafety
549
+ - React-Core
550
+ - React-cxxreact
551
+ - React-debug
552
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.77.1)
553
+ - React-Fabric/components/root (= 0.77.1)
554
+ - React-Fabric/components/view (= 0.77.1)
555
+ - React-featureflags
556
+ - React-graphics
557
+ - React-jsi
558
+ - React-jsiexecutor
559
+ - React-logger
560
+ - React-rendererdebug
561
+ - React-runtimescheduler
562
+ - React-utils
563
+ - ReactCommon/turbomodule/core
564
+ - React-Fabric/components/legacyviewmanagerinterop (0.77.1):
565
+ - DoubleConversion
566
+ - fast_float (= 6.1.4)
567
+ - fmt (= 11.0.2)
568
+ - glog
569
+ - hermes-engine
570
+ - RCT-Folly/Fabric (= 2024.11.18.00)
571
+ - RCTRequired
572
+ - RCTTypeSafety
573
+ - React-Core
574
+ - React-cxxreact
575
+ - React-debug
576
+ - React-featureflags
577
+ - React-graphics
578
+ - React-jsi
579
+ - React-jsiexecutor
580
+ - React-logger
581
+ - React-rendererdebug
582
+ - React-runtimescheduler
583
+ - React-utils
584
+ - ReactCommon/turbomodule/core
585
+ - React-Fabric/components/root (0.77.1):
586
+ - DoubleConversion
587
+ - fast_float (= 6.1.4)
588
+ - fmt (= 11.0.2)
589
+ - glog
590
+ - hermes-engine
591
+ - RCT-Folly/Fabric (= 2024.11.18.00)
592
+ - RCTRequired
593
+ - RCTTypeSafety
594
+ - React-Core
595
+ - React-cxxreact
596
+ - React-debug
597
+ - React-featureflags
598
+ - React-graphics
599
+ - React-jsi
600
+ - React-jsiexecutor
601
+ - React-logger
602
+ - React-rendererdebug
603
+ - React-runtimescheduler
604
+ - React-utils
605
+ - ReactCommon/turbomodule/core
606
+ - React-Fabric/components/view (0.77.1):
607
+ - DoubleConversion
608
+ - fast_float (= 6.1.4)
609
+ - fmt (= 11.0.2)
610
+ - glog
611
+ - hermes-engine
612
+ - RCT-Folly/Fabric (= 2024.11.18.00)
613
+ - RCTRequired
614
+ - RCTTypeSafety
615
+ - React-Core
616
+ - React-cxxreact
617
+ - React-debug
618
+ - React-featureflags
619
+ - React-graphics
620
+ - React-jsi
621
+ - React-jsiexecutor
622
+ - React-logger
623
+ - React-rendererdebug
624
+ - React-runtimescheduler
625
+ - React-utils
626
+ - ReactCommon/turbomodule/core
627
+ - Yoga
628
+ - React-Fabric/core (0.77.1):
629
+ - DoubleConversion
630
+ - fast_float (= 6.1.4)
631
+ - fmt (= 11.0.2)
632
+ - glog
633
+ - hermes-engine
634
+ - RCT-Folly/Fabric (= 2024.11.18.00)
635
+ - RCTRequired
636
+ - RCTTypeSafety
637
+ - React-Core
638
+ - React-cxxreact
639
+ - React-debug
640
+ - React-featureflags
641
+ - React-graphics
642
+ - React-jsi
643
+ - React-jsiexecutor
644
+ - React-logger
645
+ - React-rendererdebug
646
+ - React-runtimescheduler
647
+ - React-utils
648
+ - ReactCommon/turbomodule/core
649
+ - React-Fabric/dom (0.77.1):
650
+ - DoubleConversion
651
+ - fast_float (= 6.1.4)
652
+ - fmt (= 11.0.2)
653
+ - glog
654
+ - hermes-engine
655
+ - RCT-Folly/Fabric (= 2024.11.18.00)
656
+ - RCTRequired
657
+ - RCTTypeSafety
658
+ - React-Core
659
+ - React-cxxreact
660
+ - React-debug
661
+ - React-featureflags
662
+ - React-graphics
663
+ - React-jsi
664
+ - React-jsiexecutor
665
+ - React-logger
666
+ - React-rendererdebug
667
+ - React-runtimescheduler
668
+ - React-utils
669
+ - ReactCommon/turbomodule/core
670
+ - React-Fabric/imagemanager (0.77.1):
671
+ - DoubleConversion
672
+ - fast_float (= 6.1.4)
673
+ - fmt (= 11.0.2)
674
+ - glog
675
+ - hermes-engine
676
+ - RCT-Folly/Fabric (= 2024.11.18.00)
677
+ - RCTRequired
678
+ - RCTTypeSafety
679
+ - React-Core
680
+ - React-cxxreact
681
+ - React-debug
682
+ - React-featureflags
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/leakchecker (0.77.1):
692
+ - DoubleConversion
693
+ - fast_float (= 6.1.4)
694
+ - fmt (= 11.0.2)
695
+ - glog
696
+ - hermes-engine
697
+ - RCT-Folly/Fabric (= 2024.11.18.00)
698
+ - RCTRequired
699
+ - RCTTypeSafety
700
+ - React-Core
701
+ - React-cxxreact
702
+ - React-debug
703
+ - React-featureflags
704
+ - React-graphics
705
+ - React-jsi
706
+ - React-jsiexecutor
707
+ - React-logger
708
+ - React-rendererdebug
709
+ - React-runtimescheduler
710
+ - React-utils
711
+ - ReactCommon/turbomodule/core
712
+ - React-Fabric/mounting (0.77.1):
713
+ - DoubleConversion
714
+ - fast_float (= 6.1.4)
715
+ - fmt (= 11.0.2)
716
+ - glog
717
+ - hermes-engine
718
+ - RCT-Folly/Fabric (= 2024.11.18.00)
719
+ - RCTRequired
720
+ - RCTTypeSafety
721
+ - React-Core
722
+ - React-cxxreact
723
+ - React-debug
724
+ - React-featureflags
725
+ - React-graphics
726
+ - React-jsi
727
+ - React-jsiexecutor
728
+ - React-logger
729
+ - React-rendererdebug
730
+ - React-runtimescheduler
731
+ - React-utils
732
+ - ReactCommon/turbomodule/core
733
+ - React-Fabric/observers (0.77.1):
734
+ - DoubleConversion
735
+ - fast_float (= 6.1.4)
736
+ - fmt (= 11.0.2)
737
+ - glog
738
+ - hermes-engine
739
+ - RCT-Folly/Fabric (= 2024.11.18.00)
740
+ - RCTRequired
741
+ - RCTTypeSafety
742
+ - React-Core
743
+ - React-cxxreact
744
+ - React-debug
745
+ - React-Fabric/observers/events (= 0.77.1)
746
+ - React-featureflags
747
+ - React-graphics
748
+ - React-jsi
749
+ - React-jsiexecutor
750
+ - React-logger
751
+ - React-rendererdebug
752
+ - React-runtimescheduler
753
+ - React-utils
754
+ - ReactCommon/turbomodule/core
755
+ - React-Fabric/observers/events (0.77.1):
756
+ - DoubleConversion
757
+ - fast_float (= 6.1.4)
758
+ - fmt (= 11.0.2)
759
+ - glog
760
+ - hermes-engine
761
+ - RCT-Folly/Fabric (= 2024.11.18.00)
762
+ - RCTRequired
763
+ - RCTTypeSafety
764
+ - React-Core
765
+ - React-cxxreact
766
+ - React-debug
767
+ - React-featureflags
768
+ - React-graphics
769
+ - React-jsi
770
+ - React-jsiexecutor
771
+ - React-logger
772
+ - React-rendererdebug
773
+ - React-runtimescheduler
774
+ - React-utils
775
+ - ReactCommon/turbomodule/core
776
+ - React-Fabric/scheduler (0.77.1):
777
+ - DoubleConversion
778
+ - fast_float (= 6.1.4)
779
+ - fmt (= 11.0.2)
780
+ - glog
781
+ - hermes-engine
782
+ - RCT-Folly/Fabric (= 2024.11.18.00)
783
+ - RCTRequired
784
+ - RCTTypeSafety
785
+ - React-Core
786
+ - React-cxxreact
787
+ - React-debug
788
+ - React-Fabric/observers/events
789
+ - React-featureflags
790
+ - React-graphics
791
+ - React-jsi
792
+ - React-jsiexecutor
793
+ - React-logger
794
+ - React-performancetimeline
795
+ - React-rendererdebug
796
+ - React-runtimescheduler
797
+ - React-utils
798
+ - ReactCommon/turbomodule/core
799
+ - React-Fabric/telemetry (0.77.1):
800
+ - DoubleConversion
801
+ - fast_float (= 6.1.4)
802
+ - fmt (= 11.0.2)
803
+ - glog
804
+ - hermes-engine
805
+ - RCT-Folly/Fabric (= 2024.11.18.00)
806
+ - RCTRequired
807
+ - RCTTypeSafety
808
+ - React-Core
809
+ - React-cxxreact
810
+ - React-debug
811
+ - React-featureflags
812
+ - React-graphics
813
+ - React-jsi
814
+ - React-jsiexecutor
815
+ - React-logger
816
+ - React-rendererdebug
817
+ - React-runtimescheduler
818
+ - React-utils
819
+ - ReactCommon/turbomodule/core
820
+ - React-Fabric/templateprocessor (0.77.1):
821
+ - DoubleConversion
822
+ - fast_float (= 6.1.4)
823
+ - fmt (= 11.0.2)
824
+ - glog
825
+ - hermes-engine
826
+ - RCT-Folly/Fabric (= 2024.11.18.00)
827
+ - RCTRequired
828
+ - RCTTypeSafety
829
+ - React-Core
830
+ - React-cxxreact
831
+ - React-debug
832
+ - React-featureflags
833
+ - React-graphics
834
+ - React-jsi
835
+ - React-jsiexecutor
836
+ - React-logger
837
+ - React-rendererdebug
838
+ - React-runtimescheduler
839
+ - React-utils
840
+ - ReactCommon/turbomodule/core
841
+ - React-Fabric/uimanager (0.77.1):
842
+ - DoubleConversion
843
+ - fast_float (= 6.1.4)
844
+ - fmt (= 11.0.2)
845
+ - glog
846
+ - hermes-engine
847
+ - RCT-Folly/Fabric (= 2024.11.18.00)
848
+ - RCTRequired
849
+ - RCTTypeSafety
850
+ - React-Core
851
+ - React-cxxreact
852
+ - React-debug
853
+ - React-Fabric/uimanager/consistency (= 0.77.1)
854
+ - React-featureflags
855
+ - React-graphics
856
+ - React-jsi
857
+ - React-jsiexecutor
858
+ - React-logger
859
+ - React-rendererconsistency
860
+ - React-rendererdebug
861
+ - React-runtimescheduler
862
+ - React-utils
863
+ - ReactCommon/turbomodule/core
864
+ - React-Fabric/uimanager/consistency (0.77.1):
865
+ - DoubleConversion
866
+ - fast_float (= 6.1.4)
867
+ - fmt (= 11.0.2)
868
+ - glog
869
+ - hermes-engine
870
+ - RCT-Folly/Fabric (= 2024.11.18.00)
871
+ - RCTRequired
872
+ - RCTTypeSafety
873
+ - React-Core
874
+ - React-cxxreact
875
+ - React-debug
876
+ - React-featureflags
877
+ - React-graphics
878
+ - React-jsi
879
+ - React-jsiexecutor
880
+ - React-logger
881
+ - React-rendererconsistency
882
+ - React-rendererdebug
883
+ - React-runtimescheduler
884
+ - React-utils
885
+ - ReactCommon/turbomodule/core
886
+ - React-FabricComponents (0.77.1):
887
+ - DoubleConversion
888
+ - fast_float (= 6.1.4)
889
+ - fmt (= 11.0.2)
890
+ - glog
891
+ - hermes-engine
892
+ - RCT-Folly/Fabric (= 2024.11.18.00)
893
+ - RCTRequired
894
+ - RCTTypeSafety
895
+ - React-Core
896
+ - React-cxxreact
897
+ - React-debug
898
+ - React-Fabric
899
+ - React-FabricComponents/components (= 0.77.1)
900
+ - React-FabricComponents/textlayoutmanager (= 0.77.1)
901
+ - React-featureflags
902
+ - React-graphics
903
+ - React-jsi
904
+ - React-jsiexecutor
905
+ - React-logger
906
+ - React-rendererdebug
907
+ - React-runtimescheduler
908
+ - React-utils
909
+ - ReactCommon/turbomodule/core
910
+ - Yoga
911
+ - React-FabricComponents/components (0.77.1):
912
+ - DoubleConversion
913
+ - fast_float (= 6.1.4)
914
+ - fmt (= 11.0.2)
915
+ - glog
916
+ - hermes-engine
917
+ - RCT-Folly/Fabric (= 2024.11.18.00)
918
+ - RCTRequired
919
+ - RCTTypeSafety
920
+ - React-Core
921
+ - React-cxxreact
922
+ - React-debug
923
+ - React-Fabric
924
+ - React-FabricComponents/components/inputaccessory (= 0.77.1)
925
+ - React-FabricComponents/components/iostextinput (= 0.77.1)
926
+ - React-FabricComponents/components/modal (= 0.77.1)
927
+ - React-FabricComponents/components/rncore (= 0.77.1)
928
+ - React-FabricComponents/components/safeareaview (= 0.77.1)
929
+ - React-FabricComponents/components/scrollview (= 0.77.1)
930
+ - React-FabricComponents/components/text (= 0.77.1)
931
+ - React-FabricComponents/components/textinput (= 0.77.1)
932
+ - React-FabricComponents/components/unimplementedview (= 0.77.1)
933
+ - React-featureflags
934
+ - React-graphics
935
+ - React-jsi
936
+ - React-jsiexecutor
937
+ - React-logger
938
+ - React-rendererdebug
939
+ - React-runtimescheduler
940
+ - React-utils
941
+ - ReactCommon/turbomodule/core
942
+ - Yoga
943
+ - React-FabricComponents/components/inputaccessory (0.77.1):
944
+ - DoubleConversion
945
+ - fast_float (= 6.1.4)
946
+ - fmt (= 11.0.2)
947
+ - glog
948
+ - hermes-engine
949
+ - RCT-Folly/Fabric (= 2024.11.18.00)
950
+ - RCTRequired
951
+ - RCTTypeSafety
952
+ - React-Core
953
+ - React-cxxreact
954
+ - React-debug
955
+ - React-Fabric
956
+ - React-featureflags
957
+ - React-graphics
958
+ - React-jsi
959
+ - React-jsiexecutor
960
+ - React-logger
961
+ - React-rendererdebug
962
+ - React-runtimescheduler
963
+ - React-utils
964
+ - ReactCommon/turbomodule/core
965
+ - Yoga
966
+ - React-FabricComponents/components/iostextinput (0.77.1):
967
+ - DoubleConversion
968
+ - fast_float (= 6.1.4)
969
+ - fmt (= 11.0.2)
970
+ - glog
971
+ - hermes-engine
972
+ - RCT-Folly/Fabric (= 2024.11.18.00)
973
+ - RCTRequired
974
+ - RCTTypeSafety
975
+ - React-Core
976
+ - React-cxxreact
977
+ - React-debug
978
+ - React-Fabric
979
+ - React-featureflags
980
+ - React-graphics
981
+ - React-jsi
982
+ - React-jsiexecutor
983
+ - React-logger
984
+ - React-rendererdebug
985
+ - React-runtimescheduler
986
+ - React-utils
987
+ - ReactCommon/turbomodule/core
988
+ - Yoga
989
+ - React-FabricComponents/components/modal (0.77.1):
990
+ - DoubleConversion
991
+ - fast_float (= 6.1.4)
992
+ - fmt (= 11.0.2)
993
+ - glog
994
+ - hermes-engine
995
+ - RCT-Folly/Fabric (= 2024.11.18.00)
996
+ - RCTRequired
997
+ - RCTTypeSafety
998
+ - React-Core
999
+ - React-cxxreact
1000
+ - React-debug
1001
+ - React-Fabric
1002
+ - React-featureflags
1003
+ - React-graphics
1004
+ - React-jsi
1005
+ - React-jsiexecutor
1006
+ - React-logger
1007
+ - React-rendererdebug
1008
+ - React-runtimescheduler
1009
+ - React-utils
1010
+ - ReactCommon/turbomodule/core
1011
+ - Yoga
1012
+ - React-FabricComponents/components/rncore (0.77.1):
1013
+ - DoubleConversion
1014
+ - fast_float (= 6.1.4)
1015
+ - fmt (= 11.0.2)
1016
+ - glog
1017
+ - hermes-engine
1018
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1019
+ - RCTRequired
1020
+ - RCTTypeSafety
1021
+ - React-Core
1022
+ - React-cxxreact
1023
+ - React-debug
1024
+ - React-Fabric
1025
+ - React-featureflags
1026
+ - React-graphics
1027
+ - React-jsi
1028
+ - React-jsiexecutor
1029
+ - React-logger
1030
+ - React-rendererdebug
1031
+ - React-runtimescheduler
1032
+ - React-utils
1033
+ - ReactCommon/turbomodule/core
1034
+ - Yoga
1035
+ - React-FabricComponents/components/safeareaview (0.77.1):
1036
+ - DoubleConversion
1037
+ - fast_float (= 6.1.4)
1038
+ - fmt (= 11.0.2)
1039
+ - glog
1040
+ - hermes-engine
1041
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1042
+ - RCTRequired
1043
+ - RCTTypeSafety
1044
+ - React-Core
1045
+ - React-cxxreact
1046
+ - React-debug
1047
+ - React-Fabric
1048
+ - React-featureflags
1049
+ - React-graphics
1050
+ - React-jsi
1051
+ - React-jsiexecutor
1052
+ - React-logger
1053
+ - React-rendererdebug
1054
+ - React-runtimescheduler
1055
+ - React-utils
1056
+ - ReactCommon/turbomodule/core
1057
+ - Yoga
1058
+ - React-FabricComponents/components/scrollview (0.77.1):
1059
+ - DoubleConversion
1060
+ - fast_float (= 6.1.4)
1061
+ - fmt (= 11.0.2)
1062
+ - glog
1063
+ - hermes-engine
1064
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1065
+ - RCTRequired
1066
+ - RCTTypeSafety
1067
+ - React-Core
1068
+ - React-cxxreact
1069
+ - React-debug
1070
+ - React-Fabric
1071
+ - React-featureflags
1072
+ - React-graphics
1073
+ - React-jsi
1074
+ - React-jsiexecutor
1075
+ - React-logger
1076
+ - React-rendererdebug
1077
+ - React-runtimescheduler
1078
+ - React-utils
1079
+ - ReactCommon/turbomodule/core
1080
+ - Yoga
1081
+ - React-FabricComponents/components/text (0.77.1):
1082
+ - DoubleConversion
1083
+ - fast_float (= 6.1.4)
1084
+ - fmt (= 11.0.2)
1085
+ - glog
1086
+ - hermes-engine
1087
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1088
+ - RCTRequired
1089
+ - RCTTypeSafety
1090
+ - React-Core
1091
+ - React-cxxreact
1092
+ - React-debug
1093
+ - React-Fabric
1094
+ - React-featureflags
1095
+ - React-graphics
1096
+ - React-jsi
1097
+ - React-jsiexecutor
1098
+ - React-logger
1099
+ - React-rendererdebug
1100
+ - React-runtimescheduler
1101
+ - React-utils
1102
+ - ReactCommon/turbomodule/core
1103
+ - Yoga
1104
+ - React-FabricComponents/components/textinput (0.77.1):
1105
+ - DoubleConversion
1106
+ - fast_float (= 6.1.4)
1107
+ - fmt (= 11.0.2)
1108
+ - glog
1109
+ - hermes-engine
1110
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1111
+ - RCTRequired
1112
+ - RCTTypeSafety
1113
+ - React-Core
1114
+ - React-cxxreact
1115
+ - React-debug
1116
+ - React-Fabric
1117
+ - React-featureflags
1118
+ - React-graphics
1119
+ - React-jsi
1120
+ - React-jsiexecutor
1121
+ - React-logger
1122
+ - React-rendererdebug
1123
+ - React-runtimescheduler
1124
+ - React-utils
1125
+ - ReactCommon/turbomodule/core
1126
+ - Yoga
1127
+ - React-FabricComponents/components/unimplementedview (0.77.1):
1128
+ - DoubleConversion
1129
+ - fast_float (= 6.1.4)
1130
+ - fmt (= 11.0.2)
1131
+ - glog
1132
+ - hermes-engine
1133
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1134
+ - RCTRequired
1135
+ - RCTTypeSafety
1136
+ - React-Core
1137
+ - React-cxxreact
1138
+ - React-debug
1139
+ - React-Fabric
1140
+ - React-featureflags
1141
+ - React-graphics
1142
+ - React-jsi
1143
+ - React-jsiexecutor
1144
+ - React-logger
1145
+ - React-rendererdebug
1146
+ - React-runtimescheduler
1147
+ - React-utils
1148
+ - ReactCommon/turbomodule/core
1149
+ - Yoga
1150
+ - React-FabricComponents/textlayoutmanager (0.77.1):
1151
+ - DoubleConversion
1152
+ - fast_float (= 6.1.4)
1153
+ - fmt (= 11.0.2)
1154
+ - glog
1155
+ - hermes-engine
1156
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1157
+ - RCTRequired
1158
+ - RCTTypeSafety
1159
+ - React-Core
1160
+ - React-cxxreact
1161
+ - React-debug
1162
+ - React-Fabric
1163
+ - React-featureflags
1164
+ - React-graphics
1165
+ - React-jsi
1166
+ - React-jsiexecutor
1167
+ - React-logger
1168
+ - React-rendererdebug
1169
+ - React-runtimescheduler
1170
+ - React-utils
1171
+ - ReactCommon/turbomodule/core
1172
+ - Yoga
1173
+ - React-FabricImage (0.77.1):
1174
+ - DoubleConversion
1175
+ - fast_float (= 6.1.4)
1176
+ - fmt (= 11.0.2)
1177
+ - glog
1178
+ - hermes-engine
1179
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1180
+ - RCTRequired (= 0.77.1)
1181
+ - RCTTypeSafety (= 0.77.1)
1182
+ - React-Fabric
1183
+ - React-featureflags
1184
+ - React-graphics
1185
+ - React-ImageManager
1186
+ - React-jsi
1187
+ - React-jsiexecutor (= 0.77.1)
1188
+ - React-logger
1189
+ - React-rendererdebug
1190
+ - React-utils
1191
+ - ReactCommon
1192
+ - Yoga
1193
+ - React-featureflags (0.77.1)
1194
+ - React-featureflagsnativemodule (0.77.1):
1195
+ - hermes-engine
1196
+ - RCT-Folly
1197
+ - React-featureflags
1198
+ - React-jsi
1199
+ - React-jsiexecutor
1200
+ - React-RCTFBReactNativeSpec
1201
+ - ReactCommon/turbomodule/core
1202
+ - React-graphics (0.77.1):
1203
+ - DoubleConversion
1204
+ - fast_float (= 6.1.4)
1205
+ - fmt (= 11.0.2)
1206
+ - glog
1207
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1208
+ - React-jsi
1209
+ - React-jsiexecutor
1210
+ - React-utils
1211
+ - React-hermes (0.77.1):
1212
+ - DoubleConversion
1213
+ - fast_float (= 6.1.4)
1214
+ - fmt (= 11.0.2)
1215
+ - glog
1216
+ - hermes-engine
1217
+ - RCT-Folly (= 2024.11.18.00)
1218
+ - React-cxxreact (= 0.77.1)
1219
+ - React-jsi
1220
+ - React-jsiexecutor (= 0.77.1)
1221
+ - React-jsinspector
1222
+ - React-perflogger (= 0.77.1)
1223
+ - React-runtimeexecutor
1224
+ - React-idlecallbacksnativemodule (0.77.1):
1225
+ - hermes-engine
1226
+ - RCT-Folly
1227
+ - React-jsi
1228
+ - React-jsiexecutor
1229
+ - React-RCTFBReactNativeSpec
1230
+ - React-runtimescheduler
1231
+ - ReactCommon/turbomodule/core
1232
+ - React-ImageManager (0.77.1):
1233
+ - glog
1234
+ - RCT-Folly/Fabric
1235
+ - React-Core/Default
1236
+ - React-debug
1237
+ - React-Fabric
1238
+ - React-graphics
1239
+ - React-rendererdebug
1240
+ - React-utils
1241
+ - React-jserrorhandler (0.77.1):
1242
+ - glog
1243
+ - hermes-engine
1244
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1245
+ - React-cxxreact
1246
+ - React-debug
1247
+ - React-featureflags
1248
+ - React-jsi
1249
+ - ReactCommon/turbomodule/bridging
1250
+ - React-jsi (0.77.1):
1251
+ - boost
1252
+ - DoubleConversion
1253
+ - fast_float (= 6.1.4)
1254
+ - fmt (= 11.0.2)
1255
+ - glog
1256
+ - hermes-engine
1257
+ - RCT-Folly (= 2024.11.18.00)
1258
+ - React-jsiexecutor (0.77.1):
1259
+ - DoubleConversion
1260
+ - fast_float (= 6.1.4)
1261
+ - fmt (= 11.0.2)
1262
+ - glog
1263
+ - hermes-engine
1264
+ - RCT-Folly (= 2024.11.18.00)
1265
+ - React-cxxreact (= 0.77.1)
1266
+ - React-jsi (= 0.77.1)
1267
+ - React-jsinspector
1268
+ - React-perflogger (= 0.77.1)
1269
+ - React-jsinspector (0.77.1):
1270
+ - DoubleConversion
1271
+ - glog
1272
+ - hermes-engine
1273
+ - RCT-Folly (= 2024.11.18.00)
1274
+ - React-featureflags
1275
+ - React-jsi
1276
+ - React-perflogger (= 0.77.1)
1277
+ - React-runtimeexecutor (= 0.77.1)
1278
+ - React-jsitracing (0.77.1):
1279
+ - React-jsi
1280
+ - React-logger (0.77.1):
1281
+ - glog
1282
+ - React-Mapbuffer (0.77.1):
1283
+ - glog
1284
+ - React-debug
1285
+ - React-microtasksnativemodule (0.77.1):
1286
+ - hermes-engine
1287
+ - RCT-Folly
1288
+ - React-jsi
1289
+ - React-jsiexecutor
1290
+ - React-RCTFBReactNativeSpec
1291
+ - ReactCommon/turbomodule/core
1292
+ - react-native-adjust (4.38.0):
1293
+ - Adjust (= 4.38.0)
1294
+ - React-Core
1295
+ - react-native-blob-util (0.22.1):
1296
+ - DoubleConversion
1297
+ - glog
1298
+ - hermes-engine
1299
+ - RCT-Folly (= 2024.11.18.00)
1300
+ - RCTRequired
1301
+ - RCTTypeSafety
1302
+ - React-Core
1303
+ - React-debug
1304
+ - React-Fabric
1305
+ - React-featureflags
1306
+ - React-graphics
1307
+ - React-ImageManager
1308
+ - React-NativeModulesApple
1309
+ - React-RCTFabric
1310
+ - React-rendererdebug
1311
+ - React-utils
1312
+ - ReactCodegen
1313
+ - ReactCommon/turbomodule/bridging
1314
+ - ReactCommon/turbomodule/core
1315
+ - Yoga
1316
+ - react-native-cameraroll (7.10.0):
1317
+ - DoubleConversion
1318
+ - glog
1319
+ - hermes-engine
1320
+ - RCT-Folly (= 2024.11.18.00)
1321
+ - RCTRequired
1322
+ - RCTTypeSafety
1323
+ - React-Core
1324
+ - React-debug
1325
+ - React-Fabric
1326
+ - React-featureflags
1327
+ - React-graphics
1328
+ - React-ImageManager
1329
+ - React-NativeModulesApple
1330
+ - React-RCTFabric
1331
+ - React-rendererdebug
1332
+ - React-utils
1333
+ - ReactCodegen
1334
+ - ReactCommon/turbomodule/bridging
1335
+ - ReactCommon/turbomodule/core
1336
+ - Yoga
1337
+ - react-native-config (1.5.5):
1338
+ - react-native-config/App (= 1.5.5)
1339
+ - react-native-config/App (1.5.5):
1340
+ - React-Core
1341
+ - react-native-cookies (6.2.1):
1342
+ - React-Core
1343
+ - react-native-document-picker (9.3.1):
1344
+ - DoubleConversion
1345
+ - glog
1346
+ - hermes-engine
1347
+ - RCT-Folly (= 2024.11.18.00)
1348
+ - RCTRequired
1349
+ - RCTTypeSafety
1350
+ - React-Core
1351
+ - React-debug
1352
+ - React-Fabric
1353
+ - React-featureflags
1354
+ - React-graphics
1355
+ - React-ImageManager
1356
+ - React-NativeModulesApple
1357
+ - React-RCTFabric
1358
+ - React-rendererdebug
1359
+ - React-utils
1360
+ - ReactCodegen
1361
+ - ReactCommon/turbomodule/bridging
1362
+ - ReactCommon/turbomodule/core
1363
+ - Yoga
1364
+ - react-native-get-random-values (1.11.0):
1365
+ - React-Core
1366
+ - react-native-image-picker (8.2.1):
1367
+ - DoubleConversion
1368
+ - glog
1369
+ - hermes-engine
1370
+ - RCT-Folly (= 2024.11.18.00)
1371
+ - RCTRequired
1372
+ - RCTTypeSafety
1373
+ - React-Core
1374
+ - React-debug
1375
+ - React-Fabric
1376
+ - React-featureflags
1377
+ - React-graphics
1378
+ - React-ImageManager
1379
+ - React-NativeModulesApple
1380
+ - React-RCTFabric
1381
+ - React-rendererdebug
1382
+ - React-utils
1383
+ - ReactCodegen
1384
+ - ReactCommon/turbomodule/bridging
1385
+ - ReactCommon/turbomodule/core
1386
+ - Yoga
1387
+ - react-native-image-resizer (3.0.11):
1388
+ - DoubleConversion
1389
+ - glog
1390
+ - hermes-engine
1391
+ - RCT-Folly (= 2024.11.18.00)
1392
+ - RCTRequired
1393
+ - RCTTypeSafety
1394
+ - React-Codegen
1395
+ - React-Core
1396
+ - React-debug
1397
+ - React-Fabric
1398
+ - React-featureflags
1399
+ - React-graphics
1400
+ - React-ImageManager
1401
+ - React-NativeModulesApple
1402
+ - React-RCTFabric
1403
+ - React-rendererdebug
1404
+ - React-utils
1405
+ - ReactCodegen
1406
+ - ReactCommon/turbomodule/bridging
1407
+ - ReactCommon/turbomodule/core
1408
+ - Yoga
1409
+ - react-native-modpow (1.1.1-0):
1410
+ - React
1411
+ - react-native-netinfo (11.4.1):
1412
+ - React-Core
1413
+ - react-native-orientation-locker (1.7.0):
1414
+ - React-Core
1415
+ - react-native-pdf (6.7.6):
1416
+ - DoubleConversion
1417
+ - glog
1418
+ - hermes-engine
1419
+ - RCT-Folly (= 2024.11.18.00)
1420
+ - RCTRequired
1421
+ - RCTTypeSafety
1422
+ - React-Core
1423
+ - React-debug
1424
+ - React-Fabric
1425
+ - React-featureflags
1426
+ - React-graphics
1427
+ - React-ImageManager
1428
+ - React-NativeModulesApple
1429
+ - React-RCTFabric
1430
+ - React-rendererdebug
1431
+ - React-utils
1432
+ - ReactCodegen
1433
+ - ReactCommon/turbomodule/bridging
1434
+ - ReactCommon/turbomodule/core
1435
+ - Yoga
1436
+ - react-native-safe-area-context (5.1.0):
1437
+ - DoubleConversion
1438
+ - glog
1439
+ - hermes-engine
1440
+ - RCT-Folly (= 2024.11.18.00)
1441
+ - RCTRequired
1442
+ - RCTTypeSafety
1443
+ - React-Core
1444
+ - React-debug
1445
+ - React-Fabric
1446
+ - React-featureflags
1447
+ - React-graphics
1448
+ - React-ImageManager
1449
+ - react-native-safe-area-context/common (= 5.1.0)
1450
+ - react-native-safe-area-context/fabric (= 5.1.0)
1451
+ - React-NativeModulesApple
1452
+ - React-RCTFabric
1453
+ - React-rendererdebug
1454
+ - React-utils
1455
+ - ReactCodegen
1456
+ - ReactCommon/turbomodule/bridging
1457
+ - ReactCommon/turbomodule/core
1458
+ - Yoga
1459
+ - react-native-safe-area-context/common (5.1.0):
1460
+ - DoubleConversion
1461
+ - glog
1462
+ - hermes-engine
1463
+ - RCT-Folly (= 2024.11.18.00)
1464
+ - RCTRequired
1465
+ - RCTTypeSafety
1466
+ - React-Core
1467
+ - React-debug
1468
+ - React-Fabric
1469
+ - React-featureflags
1470
+ - React-graphics
1471
+ - React-ImageManager
1472
+ - React-NativeModulesApple
1473
+ - React-RCTFabric
1474
+ - React-rendererdebug
1475
+ - React-utils
1476
+ - ReactCodegen
1477
+ - ReactCommon/turbomodule/bridging
1478
+ - ReactCommon/turbomodule/core
1479
+ - Yoga
1480
+ - react-native-safe-area-context/fabric (5.1.0):
1481
+ - DoubleConversion
1482
+ - glog
1483
+ - hermes-engine
1484
+ - RCT-Folly (= 2024.11.18.00)
1485
+ - RCTRequired
1486
+ - RCTTypeSafety
1487
+ - React-Core
1488
+ - React-debug
1489
+ - React-Fabric
1490
+ - React-featureflags
1491
+ - React-graphics
1492
+ - React-ImageManager
1493
+ - react-native-safe-area-context/common
1494
+ - React-NativeModulesApple
1495
+ - React-RCTFabric
1496
+ - React-rendererdebug
1497
+ - React-utils
1498
+ - ReactCodegen
1499
+ - ReactCommon/turbomodule/bridging
1500
+ - ReactCommon/turbomodule/core
1501
+ - Yoga
1502
+ - react-native-video (6.13.0):
1503
+ - DoubleConversion
1504
+ - glog
1505
+ - hermes-engine
1506
+ - RCT-Folly (= 2024.11.18.00)
1507
+ - RCTRequired
1508
+ - RCTTypeSafety
1509
+ - React-Core
1510
+ - React-debug
1511
+ - React-Fabric
1512
+ - React-featureflags
1513
+ - React-graphics
1514
+ - React-ImageManager
1515
+ - react-native-video/Video (= 6.13.0)
1516
+ - React-NativeModulesApple
1517
+ - React-RCTFabric
1518
+ - React-rendererdebug
1519
+ - React-utils
1520
+ - ReactCodegen
1521
+ - ReactCommon/turbomodule/bridging
1522
+ - ReactCommon/turbomodule/core
1523
+ - Yoga
1524
+ - react-native-video/Fabric (6.13.0):
1525
+ - DoubleConversion
1526
+ - glog
1527
+ - hermes-engine
1528
+ - RCT-Folly (= 2024.11.18.00)
1529
+ - RCTRequired
1530
+ - RCTTypeSafety
1531
+ - React-Core
1532
+ - React-debug
1533
+ - React-Fabric
1534
+ - React-featureflags
1535
+ - React-graphics
1536
+ - React-ImageManager
1537
+ - React-NativeModulesApple
1538
+ - React-RCTFabric
1539
+ - React-rendererdebug
1540
+ - React-utils
1541
+ - ReactCodegen
1542
+ - ReactCommon/turbomodule/bridging
1543
+ - ReactCommon/turbomodule/core
1544
+ - Yoga
1545
+ - react-native-video/Video (6.13.0):
1546
+ - DoubleConversion
1547
+ - glog
1548
+ - hermes-engine
1549
+ - RCT-Folly (= 2024.11.18.00)
1550
+ - RCTRequired
1551
+ - RCTTypeSafety
1552
+ - React-Core
1553
+ - React-debug
1554
+ - React-Fabric
1555
+ - React-featureflags
1556
+ - React-graphics
1557
+ - React-ImageManager
1558
+ - react-native-video/Fabric
1559
+ - React-NativeModulesApple
1560
+ - React-RCTFabric
1561
+ - React-rendererdebug
1562
+ - React-utils
1563
+ - ReactCodegen
1564
+ - ReactCommon/turbomodule/bridging
1565
+ - ReactCommon/turbomodule/core
1566
+ - Yoga
1567
+ - react-native-view-shot (4.0.3):
1568
+ - DoubleConversion
1569
+ - glog
1570
+ - hermes-engine
1571
+ - RCT-Folly (= 2024.11.18.00)
1572
+ - RCTRequired
1573
+ - RCTTypeSafety
1574
+ - React-Core
1575
+ - React-debug
1576
+ - React-Fabric
1577
+ - React-featureflags
1578
+ - React-graphics
1579
+ - React-ImageManager
1580
+ - React-NativeModulesApple
1581
+ - React-RCTFabric
1582
+ - React-rendererdebug
1583
+ - React-utils
1584
+ - ReactCodegen
1585
+ - ReactCommon/turbomodule/bridging
1586
+ - ReactCommon/turbomodule/core
1587
+ - Yoga
1588
+ - react-native-webview (13.15.0):
1589
+ - DoubleConversion
1590
+ - glog
1591
+ - hermes-engine
1592
+ - RCT-Folly (= 2024.11.18.00)
1593
+ - RCTRequired
1594
+ - RCTTypeSafety
1595
+ - React-Core
1596
+ - React-debug
1597
+ - React-Fabric
1598
+ - React-featureflags
1599
+ - React-graphics
1600
+ - React-ImageManager
1601
+ - React-NativeModulesApple
1602
+ - React-RCTFabric
1603
+ - React-rendererdebug
1604
+ - React-utils
1605
+ - ReactCodegen
1606
+ - ReactCommon/turbomodule/bridging
1607
+ - ReactCommon/turbomodule/core
1608
+ - Yoga
1609
+ - react-native-xrn-app-utils (0.1.0):
1610
+ - DoubleConversion
1611
+ - glog
1612
+ - hermes-engine
1613
+ - MBProgressHUD (= 1.2.0)
1614
+ - RCT-Folly (= 2024.11.18.00)
1615
+ - RCTRequired
1616
+ - RCTTypeSafety
1617
+ - React-Core
1618
+ - React-debug
1619
+ - React-Fabric
1620
+ - React-featureflags
1621
+ - React-graphics
1622
+ - React-ImageManager
1623
+ - react-native-xrn-multi-bundle
1624
+ - React-NativeModulesApple
1625
+ - React-RCTFabric
1626
+ - React-rendererdebug
1627
+ - React-utils
1628
+ - ReactCodegen
1629
+ - ReactCommon/turbomodule/bridging
1630
+ - ReactCommon/turbomodule/core
1631
+ - Yoga
1632
+ - react-native-xrn-asset-loader (0.1.0):
1633
+ - DoubleConversion
1634
+ - glog
1635
+ - hermes-engine
1636
+ - RCT-Folly (= 2024.11.18.00)
1637
+ - RCTRequired
1638
+ - RCTTypeSafety
1639
+ - React-Core
1640
+ - React-debug
1641
+ - React-Fabric
1642
+ - React-featureflags
1643
+ - React-graphics
1644
+ - React-ImageManager
1645
+ - React-NativeModulesApple
1646
+ - React-RCTFabric
1647
+ - React-rendererdebug
1648
+ - React-utils
1649
+ - ReactCodegen
1650
+ - ReactCommon/turbomodule/bridging
1651
+ - ReactCommon/turbomodule/core
1652
+ - Yoga
1653
+ - react-native-xrn-bundle (0.1.0):
1654
+ - CodePush
1655
+ - DoubleConversion
1656
+ - glog
1657
+ - hermes-engine
1658
+ - RCT-Folly (= 2024.11.18.00)
1659
+ - RCTRequired
1660
+ - RCTTypeSafety
1661
+ - React-Core
1662
+ - React-debug
1663
+ - React-Fabric
1664
+ - React-featureflags
1665
+ - React-graphics
1666
+ - React-ImageManager
1667
+ - react-native-config (= 1.5.5)
1668
+ - react-native-xrn-multi-bundle
1669
+ - react-native-xrn-navigation
1670
+ - react-native-xrn-network
1671
+ - React-NativeModulesApple
1672
+ - React-RCTFabric
1673
+ - React-rendererdebug
1674
+ - React-utils
1675
+ - ReactCodegen
1676
+ - ReactCommon/turbomodule/bridging
1677
+ - ReactCommon/turbomodule/core
1678
+ - Yoga
1679
+ - react-native-xrn-debug-tools (0.1.0):
1680
+ - DoubleConversion
1681
+ - glog
1682
+ - hermes-engine
1683
+ - RCT-Folly (= 2024.11.18.00)
1684
+ - RCTRequired
1685
+ - RCTTypeSafety
1686
+ - React-Core
1687
+ - React-debug
1688
+ - React-Fabric
1689
+ - React-featureflags
1690
+ - React-graphics
1691
+ - React-ImageManager
1692
+ - react-native-xrn-navigation
1693
+ - React-NativeModulesApple
1694
+ - React-RCTFabric
1695
+ - React-rendererdebug
1696
+ - React-utils
1697
+ - ReactCodegen
1698
+ - ReactCommon/turbomodule/bridging
1699
+ - ReactCommon/turbomodule/core
1700
+ - Yoga
1701
+ - react-native-xrn-image (0.1.0):
1702
+ - DoubleConversion
1703
+ - glog
1704
+ - hermes-engine
1705
+ - libavif/libdav1d (= 0.11.1)
1706
+ - RCT-Folly (= 2024.11.18.00)
1707
+ - RCTRequired
1708
+ - RCTTypeSafety
1709
+ - React-Core
1710
+ - React-debug
1711
+ - React-Fabric
1712
+ - React-featureflags
1713
+ - React-graphics
1714
+ - React-ImageManager
1715
+ - React-NativeModulesApple
1716
+ - React-RCTFabric
1717
+ - React-rendererdebug
1718
+ - React-utils
1719
+ - ReactCodegen
1720
+ - ReactCommon/turbomodule/bridging
1721
+ - ReactCommon/turbomodule/core
1722
+ - SDWebImage (= 5.20.0)
1723
+ - SDWebImageAVIFCoder (= 0.11.0)
1724
+ - SDWebImageSVGCoder (= 1.7.0)
1725
+ - SDWebImageWebPCoder (= 0.8.4)
1726
+ - Yoga
1727
+ - react-native-xrn-keyboard (0.1.0):
1728
+ - DoubleConversion
1729
+ - glog
1730
+ - hermes-engine
1731
+ - RCT-Folly (= 2024.11.18.00)
1732
+ - RCTRequired
1733
+ - RCTTypeSafety
1734
+ - React-Core
1735
+ - React-debug
1736
+ - React-Fabric
1737
+ - React-featureflags
1738
+ - React-graphics
1739
+ - React-ImageManager
1740
+ - react-native-xrn-bundle
1741
+ - React-NativeModulesApple
1742
+ - React-RCTFabric
1743
+ - React-rendererdebug
1744
+ - React-utils
1745
+ - ReactCodegen
1746
+ - ReactCommon/turbomodule/bridging
1747
+ - ReactCommon/turbomodule/core
1748
+ - Yoga
1749
+ - react-native-xrn-loading (0.1.0):
1750
+ - DoubleConversion
1751
+ - glog
1752
+ - hermes-engine
1753
+ - lottie-ios (= 4.5.0)
1754
+ - MBProgressHUD (= 1.2.0)
1755
+ - RCT-Folly (= 2024.11.18.00)
1756
+ - RCTRequired
1757
+ - RCTTypeSafety
1758
+ - React-Core
1759
+ - React-debug
1760
+ - React-Fabric
1761
+ - React-featureflags
1762
+ - React-graphics
1763
+ - React-ImageManager
1764
+ - React-NativeModulesApple
1765
+ - React-RCTFabric
1766
+ - React-rendererdebug
1767
+ - React-utils
1768
+ - ReactCodegen
1769
+ - ReactCommon/turbomodule/bridging
1770
+ - ReactCommon/turbomodule/core
1771
+ - Yoga
1772
+ - react-native-xrn-modules-core (0.1.0):
1773
+ - DoubleConversion
1774
+ - glog
1775
+ - hermes-engine
1776
+ - RCT-Folly (= 2024.11.18.00)
1777
+ - RCTRequired
1778
+ - RCTTypeSafety
1779
+ - React-Core
1780
+ - React-debug
1781
+ - React-Fabric
1782
+ - React-featureflags
1783
+ - React-graphics
1784
+ - React-ImageManager
1785
+ - React-NativeModulesApple
1786
+ - React-RCTFabric
1787
+ - React-rendererdebug
1788
+ - React-utils
1789
+ - ReactCodegen
1790
+ - ReactCommon/turbomodule/bridging
1791
+ - ReactCommon/turbomodule/core
1792
+ - Yoga
1793
+ - react-native-xrn-multi-bundle (0.1.0):
1794
+ - DoubleConversion
1795
+ - glog
1796
+ - hermes-engine
1797
+ - JRSwizzle (= 2.0.0)
1798
+ - RCT-Folly (= 2024.11.18.00)
1799
+ - RCTRequired
1800
+ - RCTTypeSafety
1801
+ - React-Core
1802
+ - React-debug
1803
+ - React-Fabric
1804
+ - React-featureflags
1805
+ - React-graphics
1806
+ - React-ImageManager
1807
+ - React-NativeModulesApple
1808
+ - React-RCTFabric
1809
+ - React-rendererdebug
1810
+ - React-utils
1811
+ - ReactCodegen
1812
+ - ReactCommon/turbomodule/bridging
1813
+ - ReactCommon/turbomodule/core
1814
+ - Yoga
1815
+ - YYCache (= 1.0.4)
1816
+ - react-native-xrn-native-storage (0.1.0):
1817
+ - DoubleConversion
1818
+ - glog
1819
+ - hermes-engine
1820
+ - RCT-Folly (= 2024.11.18.00)
1821
+ - RCTRequired
1822
+ - RCTTypeSafety
1823
+ - React-Core
1824
+ - React-debug
1825
+ - React-Fabric
1826
+ - React-featureflags
1827
+ - React-graphics
1828
+ - React-ImageManager
1829
+ - React-NativeModulesApple
1830
+ - React-RCTFabric
1831
+ - React-rendererdebug
1832
+ - React-utils
1833
+ - ReactCodegen
1834
+ - ReactCommon/turbomodule/bridging
1835
+ - ReactCommon/turbomodule/core
1836
+ - Yoga
1837
+ - react-native-xrn-navigation (0.1.0):
1838
+ - DoubleConversion
1839
+ - glog
1840
+ - hermes-engine
1841
+ - RCT-Folly (= 2024.11.18.00)
1842
+ - RCTRequired
1843
+ - RCTTypeSafety
1844
+ - React-Core
1845
+ - React-debug
1846
+ - React-Fabric
1847
+ - React-featureflags
1848
+ - React-graphics
1849
+ - React-ImageManager
1850
+ - react-native-xrn-multi-bundle
1851
+ - React-NativeModulesApple
1852
+ - React-RCTFabric
1853
+ - React-rendererdebug
1854
+ - React-utils
1855
+ - ReactCodegen
1856
+ - ReactCommon/turbomodule/bridging
1857
+ - ReactCommon/turbomodule/core
1858
+ - Yoga
1859
+ - react-native-xrn-network (0.1.0):
1860
+ - DoubleConversion
1861
+ - glog
1862
+ - hermes-engine
1863
+ - RCT-Folly (= 2024.11.18.00)
1864
+ - RCTRequired
1865
+ - RCTTypeSafety
1866
+ - React-Core
1867
+ - React-debug
1868
+ - React-Fabric
1869
+ - React-featureflags
1870
+ - React-graphics
1871
+ - React-ImageManager
1872
+ - React-NativeModulesApple
1873
+ - React-RCTFabric
1874
+ - React-rendererdebug
1875
+ - React-utils
1876
+ - ReactCodegen
1877
+ - ReactCommon/turbomodule/bridging
1878
+ - ReactCommon/turbomodule/core
1879
+ - Yoga
1880
+ - React-nativeconfig (0.77.1)
1881
+ - React-NativeModulesApple (0.77.1):
1882
+ - glog
1883
+ - hermes-engine
1884
+ - React-callinvoker
1885
+ - React-Core
1886
+ - React-cxxreact
1887
+ - React-jsi
1888
+ - React-jsinspector
1889
+ - React-runtimeexecutor
1890
+ - ReactCommon/turbomodule/bridging
1891
+ - ReactCommon/turbomodule/core
1892
+ - React-perflogger (0.77.1):
1893
+ - DoubleConversion
1894
+ - RCT-Folly (= 2024.11.18.00)
1895
+ - React-performancetimeline (0.77.1):
1896
+ - RCT-Folly (= 2024.11.18.00)
1897
+ - React-cxxreact
1898
+ - React-featureflags
1899
+ - React-timing
1900
+ - React-RCTActionSheet (0.77.1):
1901
+ - React-Core/RCTActionSheetHeaders (= 0.77.1)
1902
+ - React-RCTAnimation (0.77.1):
1903
+ - RCT-Folly (= 2024.11.18.00)
1904
+ - RCTTypeSafety
1905
+ - React-Core/RCTAnimationHeaders
1906
+ - React-jsi
1907
+ - React-NativeModulesApple
1908
+ - React-RCTFBReactNativeSpec
1909
+ - ReactCommon
1910
+ - React-RCTAppDelegate (0.77.1):
1911
+ - RCT-Folly (= 2024.11.18.00)
1912
+ - RCTRequired
1913
+ - RCTTypeSafety
1914
+ - React-Core
1915
+ - React-CoreModules
1916
+ - React-debug
1917
+ - React-defaultsnativemodule
1918
+ - React-Fabric
1919
+ - React-featureflags
1920
+ - React-graphics
1921
+ - React-hermes
1922
+ - React-nativeconfig
1923
+ - React-NativeModulesApple
1924
+ - React-RCTFabric
1925
+ - React-RCTFBReactNativeSpec
1926
+ - React-RCTImage
1927
+ - React-RCTNetwork
1928
+ - React-rendererdebug
1929
+ - React-RuntimeApple
1930
+ - React-RuntimeCore
1931
+ - React-RuntimeHermes
1932
+ - React-runtimescheduler
1933
+ - React-utils
1934
+ - ReactCommon
1935
+ - React-RCTBlob (0.77.1):
1936
+ - DoubleConversion
1937
+ - fast_float (= 6.1.4)
1938
+ - fmt (= 11.0.2)
1939
+ - hermes-engine
1940
+ - RCT-Folly (= 2024.11.18.00)
1941
+ - React-Core/RCTBlobHeaders
1942
+ - React-Core/RCTWebSocket
1943
+ - React-jsi
1944
+ - React-jsinspector
1945
+ - React-NativeModulesApple
1946
+ - React-RCTFBReactNativeSpec
1947
+ - React-RCTNetwork
1948
+ - ReactCommon
1949
+ - React-RCTFabric (0.77.1):
1950
+ - glog
1951
+ - hermes-engine
1952
+ - RCT-Folly/Fabric (= 2024.11.18.00)
1953
+ - React-Core
1954
+ - React-debug
1955
+ - React-Fabric
1956
+ - React-FabricComponents
1957
+ - React-FabricImage
1958
+ - React-featureflags
1959
+ - React-graphics
1960
+ - React-ImageManager
1961
+ - React-jsi
1962
+ - React-jsinspector
1963
+ - React-nativeconfig
1964
+ - React-performancetimeline
1965
+ - React-RCTImage
1966
+ - React-RCTText
1967
+ - React-rendererconsistency
1968
+ - React-rendererdebug
1969
+ - React-runtimescheduler
1970
+ - React-utils
1971
+ - Yoga
1972
+ - React-RCTFBReactNativeSpec (0.77.1):
1973
+ - hermes-engine
1974
+ - RCT-Folly
1975
+ - RCTRequired
1976
+ - RCTTypeSafety
1977
+ - React-Core
1978
+ - React-jsi
1979
+ - React-jsiexecutor
1980
+ - React-NativeModulesApple
1981
+ - ReactCommon
1982
+ - React-RCTImage (0.77.1):
1983
+ - RCT-Folly (= 2024.11.18.00)
1984
+ - RCTTypeSafety
1985
+ - React-Core/RCTImageHeaders
1986
+ - React-jsi
1987
+ - React-NativeModulesApple
1988
+ - React-RCTFBReactNativeSpec
1989
+ - React-RCTNetwork
1990
+ - ReactCommon
1991
+ - React-RCTLinking (0.77.1):
1992
+ - React-Core/RCTLinkingHeaders (= 0.77.1)
1993
+ - React-jsi (= 0.77.1)
1994
+ - React-NativeModulesApple
1995
+ - React-RCTFBReactNativeSpec
1996
+ - ReactCommon
1997
+ - ReactCommon/turbomodule/core (= 0.77.1)
1998
+ - React-RCTNetwork (0.77.1):
1999
+ - RCT-Folly (= 2024.11.18.00)
2000
+ - RCTTypeSafety
2001
+ - React-Core/RCTNetworkHeaders
2002
+ - React-jsi
2003
+ - React-NativeModulesApple
2004
+ - React-RCTFBReactNativeSpec
2005
+ - ReactCommon
2006
+ - React-RCTSettings (0.77.1):
2007
+ - RCT-Folly (= 2024.11.18.00)
2008
+ - RCTTypeSafety
2009
+ - React-Core/RCTSettingsHeaders
2010
+ - React-jsi
2011
+ - React-NativeModulesApple
2012
+ - React-RCTFBReactNativeSpec
2013
+ - ReactCommon
2014
+ - React-RCTText (0.77.1):
2015
+ - React-Core/RCTTextHeaders (= 0.77.1)
2016
+ - Yoga
2017
+ - React-RCTVibration (0.77.1):
2018
+ - RCT-Folly (= 2024.11.18.00)
2019
+ - React-Core/RCTVibrationHeaders
2020
+ - React-jsi
2021
+ - React-NativeModulesApple
2022
+ - React-RCTFBReactNativeSpec
2023
+ - ReactCommon
2024
+ - React-rendererconsistency (0.77.1)
2025
+ - React-rendererdebug (0.77.1):
2026
+ - DoubleConversion
2027
+ - fast_float (= 6.1.4)
2028
+ - fmt (= 11.0.2)
2029
+ - RCT-Folly (= 2024.11.18.00)
2030
+ - React-debug
2031
+ - React-rncore (0.77.1)
2032
+ - React-RuntimeApple (0.77.1):
2033
+ - hermes-engine
2034
+ - RCT-Folly/Fabric (= 2024.11.18.00)
2035
+ - React-callinvoker
2036
+ - React-Core/Default
2037
+ - React-CoreModules
2038
+ - React-cxxreact
2039
+ - React-featureflags
2040
+ - React-jserrorhandler
2041
+ - React-jsi
2042
+ - React-jsiexecutor
2043
+ - React-jsinspector
2044
+ - React-Mapbuffer
2045
+ - React-NativeModulesApple
2046
+ - React-RCTFabric
2047
+ - React-RCTFBReactNativeSpec
2048
+ - React-RuntimeCore
2049
+ - React-runtimeexecutor
2050
+ - React-RuntimeHermes
2051
+ - React-runtimescheduler
2052
+ - React-utils
2053
+ - React-RuntimeCore (0.77.1):
2054
+ - glog
2055
+ - hermes-engine
2056
+ - RCT-Folly/Fabric (= 2024.11.18.00)
2057
+ - React-cxxreact
2058
+ - React-Fabric
2059
+ - React-featureflags
2060
+ - React-jserrorhandler
2061
+ - React-jsi
2062
+ - React-jsiexecutor
2063
+ - React-jsinspector
2064
+ - React-performancetimeline
2065
+ - React-runtimeexecutor
2066
+ - React-runtimescheduler
2067
+ - React-utils
2068
+ - React-runtimeexecutor (0.77.1):
2069
+ - React-jsi (= 0.77.1)
2070
+ - React-RuntimeHermes (0.77.1):
2071
+ - hermes-engine
2072
+ - RCT-Folly/Fabric (= 2024.11.18.00)
2073
+ - React-featureflags
2074
+ - React-hermes
2075
+ - React-jsi
2076
+ - React-jsinspector
2077
+ - React-jsitracing
2078
+ - React-nativeconfig
2079
+ - React-RuntimeCore
2080
+ - React-utils
2081
+ - React-runtimescheduler (0.77.1):
2082
+ - glog
2083
+ - hermes-engine
2084
+ - RCT-Folly (= 2024.11.18.00)
2085
+ - React-callinvoker
2086
+ - React-cxxreact
2087
+ - React-debug
2088
+ - React-featureflags
2089
+ - React-jsi
2090
+ - React-performancetimeline
2091
+ - React-rendererconsistency
2092
+ - React-rendererdebug
2093
+ - React-runtimeexecutor
2094
+ - React-timing
2095
+ - React-utils
2096
+ - React-timing (0.77.1)
2097
+ - React-utils (0.77.1):
2098
+ - glog
2099
+ - hermes-engine
2100
+ - RCT-Folly (= 2024.11.18.00)
2101
+ - React-debug
2102
+ - React-jsi (= 0.77.1)
2103
+ - ReactAppDependencyProvider (0.77.1):
2104
+ - ReactCodegen
2105
+ - ReactCodegen (0.77.1):
2106
+ - DoubleConversion
2107
+ - glog
2108
+ - hermes-engine
2109
+ - RCT-Folly
2110
+ - RCTRequired
2111
+ - RCTTypeSafety
2112
+ - React-Core
2113
+ - React-debug
2114
+ - React-Fabric
2115
+ - React-FabricImage
2116
+ - React-featureflags
2117
+ - React-graphics
2118
+ - React-jsi
2119
+ - React-jsiexecutor
2120
+ - React-NativeModulesApple
2121
+ - React-RCTAppDelegate
2122
+ - React-rendererdebug
2123
+ - React-utils
2124
+ - ReactCommon/turbomodule/bridging
2125
+ - ReactCommon/turbomodule/core
2126
+ - ReactCommon (0.77.1):
2127
+ - ReactCommon/turbomodule (= 0.77.1)
2128
+ - ReactCommon/turbomodule (0.77.1):
2129
+ - DoubleConversion
2130
+ - fast_float (= 6.1.4)
2131
+ - fmt (= 11.0.2)
2132
+ - glog
2133
+ - hermes-engine
2134
+ - RCT-Folly (= 2024.11.18.00)
2135
+ - React-callinvoker (= 0.77.1)
2136
+ - React-cxxreact (= 0.77.1)
2137
+ - React-jsi (= 0.77.1)
2138
+ - React-logger (= 0.77.1)
2139
+ - React-perflogger (= 0.77.1)
2140
+ - ReactCommon/turbomodule/bridging (= 0.77.1)
2141
+ - ReactCommon/turbomodule/core (= 0.77.1)
2142
+ - ReactCommon/turbomodule/bridging (0.77.1):
2143
+ - DoubleConversion
2144
+ - fast_float (= 6.1.4)
2145
+ - fmt (= 11.0.2)
2146
+ - glog
2147
+ - hermes-engine
2148
+ - RCT-Folly (= 2024.11.18.00)
2149
+ - React-callinvoker (= 0.77.1)
2150
+ - React-cxxreact (= 0.77.1)
2151
+ - React-jsi (= 0.77.1)
2152
+ - React-logger (= 0.77.1)
2153
+ - React-perflogger (= 0.77.1)
2154
+ - ReactCommon/turbomodule/core (0.77.1):
2155
+ - DoubleConversion
2156
+ - fast_float (= 6.1.4)
2157
+ - fmt (= 11.0.2)
2158
+ - glog
2159
+ - hermes-engine
2160
+ - RCT-Folly (= 2024.11.18.00)
2161
+ - React-callinvoker (= 0.77.1)
2162
+ - React-cxxreact (= 0.77.1)
2163
+ - React-debug (= 0.77.1)
2164
+ - React-featureflags (= 0.77.1)
2165
+ - React-jsi (= 0.77.1)
2166
+ - React-logger (= 0.77.1)
2167
+ - React-perflogger (= 0.77.1)
2168
+ - React-utils (= 0.77.1)
2169
+ - ReactNativeKeyboardManager (6.5.16-0):
2170
+ - IQKeyboardManagerSwift (= 6.5.16)
2171
+ - React-Core
2172
+ - React-RCTText
2173
+ - RNCAsyncStorage (2.2.0):
2174
+ - DoubleConversion
2175
+ - glog
2176
+ - hermes-engine
2177
+ - RCT-Folly (= 2024.11.18.00)
2178
+ - RCTRequired
2179
+ - RCTTypeSafety
2180
+ - React-Core
2181
+ - React-debug
2182
+ - React-Fabric
2183
+ - React-featureflags
2184
+ - React-graphics
2185
+ - React-ImageManager
2186
+ - React-NativeModulesApple
2187
+ - React-RCTFabric
2188
+ - React-rendererdebug
2189
+ - React-utils
2190
+ - ReactCodegen
2191
+ - ReactCommon/turbomodule/bridging
2192
+ - ReactCommon/turbomodule/core
2193
+ - Yoga
2194
+ - RNCClipboard (1.16.2):
2195
+ - DoubleConversion
2196
+ - glog
2197
+ - hermes-engine
2198
+ - RCT-Folly (= 2024.11.18.00)
2199
+ - RCTRequired
2200
+ - RCTTypeSafety
2201
+ - React-Core
2202
+ - React-debug
2203
+ - React-Fabric
2204
+ - React-featureflags
2205
+ - React-graphics
2206
+ - React-ImageManager
2207
+ - React-NativeModulesApple
2208
+ - React-RCTFabric
2209
+ - React-rendererdebug
2210
+ - React-utils
2211
+ - ReactCodegen
2212
+ - ReactCommon/turbomodule/bridging
2213
+ - ReactCommon/turbomodule/core
2214
+ - Yoga
2215
+ - RNCMaskedView (0.3.2):
2216
+ - DoubleConversion
2217
+ - glog
2218
+ - hermes-engine
2219
+ - RCT-Folly (= 2024.11.18.00)
2220
+ - RCTRequired
2221
+ - RCTTypeSafety
2222
+ - React-Core
2223
+ - React-debug
2224
+ - React-Fabric
2225
+ - React-featureflags
2226
+ - React-graphics
2227
+ - React-ImageManager
2228
+ - React-NativeModulesApple
2229
+ - React-RCTFabric
2230
+ - React-rendererdebug
201
2231
  - React-utils
202
- - SocketRocket (= 0.6.1)
2232
+ - ReactCodegen
2233
+ - ReactCommon/turbomodule/bridging
2234
+ - ReactCommon/turbomodule/core
203
2235
  - Yoga
204
- - React-Core/RCTActionSheetHeaders (0.72.5):
2236
+ - RNCPicker (2.11.1):
2237
+ - DoubleConversion
205
2238
  - glog
206
- - RCT-Folly (= 2021.07.22.00)
207
- - React-Core/Default
208
- - React-cxxreact
209
- - React-jsc
210
- - React-jsi
211
- - React-jsiexecutor
212
- - React-perflogger
213
- - React-runtimeexecutor
2239
+ - hermes-engine
2240
+ - RCT-Folly (= 2024.11.18.00)
2241
+ - RCTRequired
2242
+ - RCTTypeSafety
2243
+ - React-Core
2244
+ - React-debug
2245
+ - React-Fabric
2246
+ - React-featureflags
2247
+ - React-graphics
2248
+ - React-ImageManager
2249
+ - React-NativeModulesApple
2250
+ - React-RCTFabric
2251
+ - React-rendererdebug
214
2252
  - React-utils
215
- - SocketRocket (= 0.6.1)
2253
+ - ReactCodegen
2254
+ - ReactCommon/turbomodule/bridging
2255
+ - ReactCommon/turbomodule/core
216
2256
  - Yoga
217
- - React-Core/RCTAnimationHeaders (0.72.5):
2257
+ - RNCPushNotificationIOS (1.11.0):
2258
+ - React-Core
2259
+ - RNDeviceInfo (14.0.4):
2260
+ - React-Core
2261
+ - RNFastImage (8.6.3):
2262
+ - React-Core
2263
+ - SDWebImage (= 5.20.0)
2264
+ - SDWebImageWebPCoder (~> 0.8.4)
2265
+ - RNFS (2.20.0):
2266
+ - React-Core
2267
+ - RNGestureHandler (2.25.0):
2268
+ - DoubleConversion
218
2269
  - glog
219
- - RCT-Folly (= 2021.07.22.00)
220
- - React-Core/Default
221
- - React-cxxreact
222
- - React-jsc
223
- - React-jsi
224
- - React-jsiexecutor
225
- - React-perflogger
226
- - React-runtimeexecutor
2270
+ - hermes-engine
2271
+ - RCT-Folly (= 2024.11.18.00)
2272
+ - RCTRequired
2273
+ - RCTTypeSafety
2274
+ - React-Core
2275
+ - React-debug
2276
+ - React-Fabric
2277
+ - React-featureflags
2278
+ - React-graphics
2279
+ - React-ImageManager
2280
+ - React-NativeModulesApple
2281
+ - React-RCTFabric
2282
+ - React-rendererdebug
227
2283
  - React-utils
228
- - SocketRocket (= 0.6.1)
2284
+ - ReactCodegen
2285
+ - ReactCommon/turbomodule/bridging
2286
+ - ReactCommon/turbomodule/core
229
2287
  - Yoga
230
- - React-Core/RCTBlobHeaders (0.72.5):
2288
+ - RNKeychain (8.2.0):
2289
+ - React-Core
2290
+ - RNLinearGradient (3.0.0-beta.0):
2291
+ - DoubleConversion
231
2292
  - glog
232
- - RCT-Folly (= 2021.07.22.00)
233
- - React-Core/Default
234
- - React-cxxreact
235
- - React-jsc
236
- - React-jsi
237
- - React-jsiexecutor
238
- - React-perflogger
239
- - React-runtimeexecutor
2293
+ - hermes-engine
2294
+ - RCT-Folly (= 2024.11.18.00)
2295
+ - RCTRequired
2296
+ - RCTTypeSafety
2297
+ - React-Core
2298
+ - React-debug
2299
+ - React-Fabric
2300
+ - React-featureflags
2301
+ - React-graphics
2302
+ - React-ImageManager
2303
+ - React-NativeModulesApple
2304
+ - React-RCTFabric
2305
+ - React-rendererdebug
240
2306
  - React-utils
241
- - SocketRocket (= 0.6.1)
2307
+ - ReactCodegen
2308
+ - ReactCommon/turbomodule/bridging
2309
+ - ReactCommon/turbomodule/core
242
2310
  - Yoga
243
- - React-Core/RCTImageHeaders (0.72.5):
2311
+ - RNLocalize (3.4.1):
2312
+ - DoubleConversion
244
2313
  - glog
245
- - RCT-Folly (= 2021.07.22.00)
246
- - React-Core/Default
247
- - React-cxxreact
248
- - React-jsc
249
- - React-jsi
250
- - React-jsiexecutor
251
- - React-perflogger
252
- - React-runtimeexecutor
2314
+ - hermes-engine
2315
+ - RCT-Folly (= 2024.11.18.00)
2316
+ - RCTRequired
2317
+ - RCTTypeSafety
2318
+ - React-Core
2319
+ - React-debug
2320
+ - React-Fabric
2321
+ - React-featureflags
2322
+ - React-graphics
2323
+ - React-ImageManager
2324
+ - React-NativeModulesApple
2325
+ - React-RCTFabric
2326
+ - React-rendererdebug
253
2327
  - React-utils
254
- - SocketRocket (= 0.6.1)
2328
+ - ReactCodegen
2329
+ - ReactCommon/turbomodule/bridging
2330
+ - ReactCommon/turbomodule/core
255
2331
  - Yoga
256
- - React-Core/RCTLinkingHeaders (0.72.5):
2332
+ - RNPermissions (5.3.0):
2333
+ - DoubleConversion
257
2334
  - glog
258
- - RCT-Folly (= 2021.07.22.00)
259
- - React-Core/Default
260
- - React-cxxreact
261
- - React-jsc
262
- - React-jsi
263
- - React-jsiexecutor
264
- - React-perflogger
265
- - React-runtimeexecutor
2335
+ - hermes-engine
2336
+ - RCT-Folly (= 2024.11.18.00)
2337
+ - RCTRequired
2338
+ - RCTTypeSafety
2339
+ - React-Core
2340
+ - React-debug
2341
+ - React-Fabric
2342
+ - React-featureflags
2343
+ - React-graphics
2344
+ - React-ImageManager
2345
+ - React-NativeModulesApple
2346
+ - React-RCTFabric
2347
+ - React-rendererdebug
266
2348
  - React-utils
267
- - SocketRocket (= 0.6.1)
2349
+ - ReactCodegen
2350
+ - ReactCommon/turbomodule/bridging
2351
+ - ReactCommon/turbomodule/core
268
2352
  - Yoga
269
- - React-Core/RCTNetworkHeaders (0.72.5):
2353
+ - RNPullToRefresh (1.1.1):
2354
+ - DoubleConversion
270
2355
  - glog
271
- - RCT-Folly (= 2021.07.22.00)
272
- - React-Core/Default
273
- - React-cxxreact
274
- - React-jsc
275
- - React-jsi
276
- - React-jsiexecutor
277
- - React-perflogger
278
- - React-runtimeexecutor
2356
+ - hermes-engine
2357
+ - RCT-Folly (= 2024.11.18.00)
2358
+ - RCTRequired
2359
+ - RCTTypeSafety
2360
+ - React-Core
2361
+ - React-debug
2362
+ - React-Fabric
2363
+ - React-featureflags
2364
+ - React-graphics
2365
+ - React-ImageManager
2366
+ - React-NativeModulesApple
2367
+ - React-RCTFabric
2368
+ - React-rendererdebug
279
2369
  - React-utils
280
- - SocketRocket (= 0.6.1)
2370
+ - ReactCodegen
2371
+ - ReactCommon/turbomodule/bridging
2372
+ - ReactCommon/turbomodule/core
281
2373
  - Yoga
282
- - React-Core/RCTSettingsHeaders (0.72.5):
2374
+ - RNReanimated (3.18.0):
2375
+ - DoubleConversion
283
2376
  - glog
284
- - RCT-Folly (= 2021.07.22.00)
285
- - React-Core/Default
286
- - React-cxxreact
287
- - React-jsc
2377
+ - hermes-engine
2378
+ - RCT-Folly (= 2024.11.18.00)
2379
+ - RCTRequired
2380
+ - RCTTypeSafety
2381
+ - React-Core
2382
+ - React-debug
2383
+ - React-Fabric
2384
+ - React-featureflags
2385
+ - React-graphics
2386
+ - React-hermes
2387
+ - React-ImageManager
288
2388
  - React-jsi
289
- - React-jsiexecutor
290
- - React-perflogger
291
- - React-runtimeexecutor
2389
+ - React-NativeModulesApple
2390
+ - React-RCTFabric
2391
+ - React-rendererdebug
292
2392
  - React-utils
293
- - SocketRocket (= 0.6.1)
2393
+ - ReactCodegen
2394
+ - ReactCommon/turbomodule/bridging
2395
+ - ReactCommon/turbomodule/core
2396
+ - RNReanimated/reanimated (= 3.18.0)
2397
+ - RNReanimated/worklets (= 3.18.0)
294
2398
  - Yoga
295
- - React-Core/RCTTextHeaders (0.72.5):
2399
+ - RNReanimated/reanimated (3.18.0):
2400
+ - DoubleConversion
296
2401
  - glog
297
- - RCT-Folly (= 2021.07.22.00)
298
- - React-Core/Default
299
- - React-cxxreact
300
- - React-jsc
2402
+ - hermes-engine
2403
+ - RCT-Folly (= 2024.11.18.00)
2404
+ - RCTRequired
2405
+ - RCTTypeSafety
2406
+ - React-Core
2407
+ - React-debug
2408
+ - React-Fabric
2409
+ - React-featureflags
2410
+ - React-graphics
2411
+ - React-hermes
2412
+ - React-ImageManager
301
2413
  - React-jsi
302
- - React-jsiexecutor
303
- - React-perflogger
304
- - React-runtimeexecutor
2414
+ - React-NativeModulesApple
2415
+ - React-RCTFabric
2416
+ - React-rendererdebug
305
2417
  - React-utils
306
- - SocketRocket (= 0.6.1)
2418
+ - ReactCodegen
2419
+ - ReactCommon/turbomodule/bridging
2420
+ - ReactCommon/turbomodule/core
2421
+ - RNReanimated/reanimated/apple (= 3.18.0)
307
2422
  - Yoga
308
- - React-Core/RCTVibrationHeaders (0.72.5):
2423
+ - RNReanimated/reanimated/apple (3.18.0):
2424
+ - DoubleConversion
309
2425
  - glog
310
- - RCT-Folly (= 2021.07.22.00)
311
- - React-Core/Default
312
- - React-cxxreact
313
- - React-jsc
2426
+ - hermes-engine
2427
+ - RCT-Folly (= 2024.11.18.00)
2428
+ - RCTRequired
2429
+ - RCTTypeSafety
2430
+ - React-Core
2431
+ - React-debug
2432
+ - React-Fabric
2433
+ - React-featureflags
2434
+ - React-graphics
2435
+ - React-hermes
2436
+ - React-ImageManager
314
2437
  - React-jsi
315
- - React-jsiexecutor
316
- - React-perflogger
317
- - React-runtimeexecutor
2438
+ - React-NativeModulesApple
2439
+ - React-RCTFabric
2440
+ - React-rendererdebug
318
2441
  - React-utils
319
- - SocketRocket (= 0.6.1)
2442
+ - ReactCodegen
2443
+ - ReactCommon/turbomodule/bridging
2444
+ - ReactCommon/turbomodule/core
320
2445
  - Yoga
321
- - React-Core/RCTWebSocket (0.72.5):
2446
+ - RNReanimated/worklets (3.18.0):
2447
+ - DoubleConversion
322
2448
  - glog
323
- - RCT-Folly (= 2021.07.22.00)
324
- - React-Core/Default (= 0.72.5)
325
- - React-cxxreact
326
- - React-jsc
2449
+ - hermes-engine
2450
+ - RCT-Folly (= 2024.11.18.00)
2451
+ - RCTRequired
2452
+ - RCTTypeSafety
2453
+ - React-Core
2454
+ - React-debug
2455
+ - React-Fabric
2456
+ - React-featureflags
2457
+ - React-graphics
2458
+ - React-hermes
2459
+ - React-ImageManager
327
2460
  - React-jsi
328
- - React-jsiexecutor
329
- - React-perflogger
330
- - React-runtimeexecutor
2461
+ - React-NativeModulesApple
2462
+ - React-RCTFabric
2463
+ - React-rendererdebug
331
2464
  - React-utils
332
- - SocketRocket (= 0.6.1)
2465
+ - ReactCodegen
2466
+ - ReactCommon/turbomodule/bridging
2467
+ - ReactCommon/turbomodule/core
2468
+ - RNReanimated/worklets/apple (= 3.18.0)
333
2469
  - Yoga
334
- - React-CoreModules (0.72.5):
335
- - RCT-Folly (= 2021.07.22.00)
336
- - RCTTypeSafety (= 0.72.5)
337
- - React-Codegen (= 0.72.5)
338
- - React-Core/CoreModulesHeaders (= 0.72.5)
339
- - React-jsi (= 0.72.5)
340
- - React-RCTBlob
341
- - React-RCTImage (= 0.72.5)
342
- - ReactCommon/turbomodule/core (= 0.72.5)
343
- - SocketRocket (= 0.6.1)
344
- - React-cxxreact (0.72.5):
345
- - boost (= 1.76.0)
346
- - DoubleConversion
347
- - glog
348
- - RCT-Folly (= 2021.07.22.00)
349
- - React-callinvoker (= 0.72.5)
350
- - React-debug (= 0.72.5)
351
- - React-jsi (= 0.72.5)
352
- - React-jsinspector (= 0.72.5)
353
- - React-logger (= 0.72.5)
354
- - React-perflogger (= 0.72.5)
355
- - React-runtimeexecutor (= 0.72.5)
356
- - React-debug (0.72.5)
357
- - React-jsc (0.72.5):
358
- - React-jsc/Fabric (= 0.72.5)
359
- - React-jsi (= 0.72.5)
360
- - React-jsc/Fabric (0.72.5):
361
- - React-jsi (= 0.72.5)
362
- - React-jsi (0.72.5):
363
- - boost (= 1.76.0)
364
- - DoubleConversion
365
- - glog
366
- - RCT-Folly (= 2021.07.22.00)
367
- - React-jsiexecutor (0.72.5):
368
- - DoubleConversion
369
- - glog
370
- - RCT-Folly (= 2021.07.22.00)
371
- - React-cxxreact (= 0.72.5)
372
- - React-jsi (= 0.72.5)
373
- - React-perflogger (= 0.72.5)
374
- - React-jsinspector (0.72.5)
375
- - React-logger (0.72.5):
2470
+ - RNReanimated/worklets/apple (3.18.0):
2471
+ - DoubleConversion
376
2472
  - glog
377
- - react-native-adjust (4.38.0):
378
- - Adjust (= 4.38.0)
379
- - React-Core
380
- - react-native-config (1.5.3):
381
- - react-native-config/App (= 1.5.3)
382
- - react-native-config/App (1.5.3):
383
- - React-Core
384
- - react-native-cookies (6.2.1-0.0.8):
385
- - React-Core
386
- - react-native-netinfo (11.3.2):
387
- - React-Core
388
- - react-native-safe-area-context (4.7.4):
389
- - React-Core
390
- - react-native-xrn-app-utils (0.0.2-beta.5):
391
- - MBProgressHUD (= 1.2.0)
392
- - RCT-Folly (= 2021.07.22.00)
393
- - React-Core
394
- - react-native-xrn-asset-loader (0.0.2-beta.3):
395
- - RCT-Folly (= 2021.07.22.00)
396
- - React-Core
397
- - react-native-xrn-bundle (0.0.2-beta.16):
398
- - CodePush
399
- - RCT-Folly (= 2021.07.22.00)
400
- - React-Core
401
- - react-native-config (= 1.5.3)
402
- - react-native-xrn-multi-bundle
403
- - react-native-xrn-navigation
404
- - react-native-xrn-debug-tools (0.0.2-beta.5):
405
- - RCT-Folly (= 2021.07.22.00)
406
- - React-Core
407
- - react-native-xrn-navigation
408
- - react-native-xrn-image (0.0.2-beta.3):
409
- - libavif/libdav1d (= 0.11.1)
410
- - RCT-Folly (= 2021.07.22.00)
411
- - React-Core
412
- - SDWebImage (= 5.20.0)
413
- - SDWebImageAVIFCoder (= 0.11.0)
414
- - SDWebImageSVGCoder (= 1.7.0)
415
- - SDWebImageWebPCoder (= 0.8.4)
416
- - react-native-xrn-loading (0.0.2-beta.2):
417
- - lottie-ios (~> 4.3.3)
418
- - MBProgressHUD (= 1.2.0)
419
- - RCT-Folly (= 2021.07.22.00)
420
- - React-Core
421
- - react-native-xrn-modules-core (0.0.2-beta.1):
422
- - RCT-Folly (= 2021.07.22.00)
423
- - React-Core
424
- - react-native-xrn-multi-bundle (0.0.2-beta.7):
425
- - JRSwizzle
426
- - React
427
- - YYCache (= 1.0.4)
428
- - react-native-xrn-native-storage (0.0.2-beta.2):
429
- - RCT-Folly (= 2021.07.22.00)
430
- - React-Core
431
- - react-native-xrn-navigation (0.0.2-beta.13):
432
- - RCT-Folly (= 2021.07.22.00)
433
- - React-Core
434
- - react-native-xrn-multi-bundle
435
- - React-NativeModulesApple (0.72.5):
436
- - React-callinvoker
2473
+ - hermes-engine
2474
+ - RCT-Folly (= 2024.11.18.00)
2475
+ - RCTRequired
2476
+ - RCTTypeSafety
437
2477
  - React-Core
438
- - React-cxxreact
2478
+ - React-debug
2479
+ - React-Fabric
2480
+ - React-featureflags
2481
+ - React-graphics
2482
+ - React-hermes
2483
+ - React-ImageManager
439
2484
  - React-jsi
440
- - React-runtimeexecutor
2485
+ - React-NativeModulesApple
2486
+ - React-RCTFabric
2487
+ - React-rendererdebug
2488
+ - React-utils
2489
+ - ReactCodegen
441
2490
  - ReactCommon/turbomodule/bridging
442
2491
  - ReactCommon/turbomodule/core
443
- - React-perflogger (0.72.5)
444
- - React-RCTActionSheet (0.72.5):
445
- - React-Core/RCTActionSheetHeaders (= 0.72.5)
446
- - React-RCTAnimation (0.72.5):
447
- - RCT-Folly (= 2021.07.22.00)
448
- - RCTTypeSafety (= 0.72.5)
449
- - React-Codegen (= 0.72.5)
450
- - React-Core/RCTAnimationHeaders (= 0.72.5)
451
- - React-jsi (= 0.72.5)
452
- - ReactCommon/turbomodule/core (= 0.72.5)
453
- - React-RCTAppDelegate (0.72.5):
454
- - RCT-Folly
2492
+ - Yoga
2493
+ - RNScreens (4.8.0):
2494
+ - DoubleConversion
2495
+ - glog
2496
+ - hermes-engine
2497
+ - RCT-Folly (= 2024.11.18.00)
455
2498
  - RCTRequired
456
2499
  - RCTTypeSafety
457
2500
  - React-Core
458
- - React-CoreModules
459
- - React-jsc
2501
+ - React-debug
2502
+ - React-Fabric
2503
+ - React-featureflags
2504
+ - React-graphics
2505
+ - React-ImageManager
460
2506
  - React-NativeModulesApple
2507
+ - React-RCTFabric
461
2508
  - React-RCTImage
462
- - React-RCTNetwork
463
- - React-runtimescheduler
2509
+ - React-rendererdebug
2510
+ - React-utils
2511
+ - ReactCodegen
2512
+ - ReactCommon/turbomodule/bridging
464
2513
  - ReactCommon/turbomodule/core
465
- - React-RCTBlob (0.72.5):
466
- - RCT-Folly (= 2021.07.22.00)
467
- - React-Codegen (= 0.72.5)
468
- - React-Core/RCTBlobHeaders (= 0.72.5)
469
- - React-Core/RCTWebSocket (= 0.72.5)
470
- - React-jsi (= 0.72.5)
471
- - React-RCTNetwork (= 0.72.5)
472
- - ReactCommon/turbomodule/core (= 0.72.5)
473
- - React-RCTImage (0.72.5):
474
- - RCT-Folly (= 2021.07.22.00)
475
- - RCTTypeSafety (= 0.72.5)
476
- - React-Codegen (= 0.72.5)
477
- - React-Core/RCTImageHeaders (= 0.72.5)
478
- - React-jsi (= 0.72.5)
479
- - React-RCTNetwork (= 0.72.5)
480
- - ReactCommon/turbomodule/core (= 0.72.5)
481
- - React-RCTLinking (0.72.5):
482
- - React-Codegen (= 0.72.5)
483
- - React-Core/RCTLinkingHeaders (= 0.72.5)
484
- - React-jsi (= 0.72.5)
485
- - ReactCommon/turbomodule/core (= 0.72.5)
486
- - React-RCTNetwork (0.72.5):
487
- - RCT-Folly (= 2021.07.22.00)
488
- - RCTTypeSafety (= 0.72.5)
489
- - React-Codegen (= 0.72.5)
490
- - React-Core/RCTNetworkHeaders (= 0.72.5)
491
- - React-jsi (= 0.72.5)
492
- - ReactCommon/turbomodule/core (= 0.72.5)
493
- - React-RCTSettings (0.72.5):
494
- - RCT-Folly (= 2021.07.22.00)
495
- - RCTTypeSafety (= 0.72.5)
496
- - React-Codegen (= 0.72.5)
497
- - React-Core/RCTSettingsHeaders (= 0.72.5)
498
- - React-jsi (= 0.72.5)
499
- - ReactCommon/turbomodule/core (= 0.72.5)
500
- - React-RCTText (0.72.5):
501
- - React-Core/RCTTextHeaders (= 0.72.5)
502
- - React-RCTVibration (0.72.5):
503
- - RCT-Folly (= 2021.07.22.00)
504
- - React-Codegen (= 0.72.5)
505
- - React-Core/RCTVibrationHeaders (= 0.72.5)
506
- - React-jsi (= 0.72.5)
507
- - ReactCommon/turbomodule/core (= 0.72.5)
508
- - React-rncore (0.72.5)
509
- - React-runtimeexecutor (0.72.5):
510
- - React-jsi (= 0.72.5)
511
- - React-runtimescheduler (0.72.5):
512
- - glog
513
- - RCT-Folly (= 2021.07.22.00)
514
- - React-callinvoker
515
- - React-debug
516
- - React-jsi
517
- - React-runtimeexecutor
518
- - React-utils (0.72.5):
2514
+ - RNScreens/common (= 4.8.0)
2515
+ - Yoga
2516
+ - RNScreens/common (4.8.0):
2517
+ - DoubleConversion
519
2518
  - glog
520
- - RCT-Folly (= 2021.07.22.00)
2519
+ - hermes-engine
2520
+ - RCT-Folly (= 2024.11.18.00)
2521
+ - RCTRequired
2522
+ - RCTTypeSafety
2523
+ - React-Core
521
2524
  - React-debug
522
- - ReactCommon/turbomodule/bridging (0.72.5):
2525
+ - React-Fabric
2526
+ - React-featureflags
2527
+ - React-graphics
2528
+ - React-ImageManager
2529
+ - React-NativeModulesApple
2530
+ - React-RCTFabric
2531
+ - React-RCTImage
2532
+ - React-rendererdebug
2533
+ - React-utils
2534
+ - ReactCodegen
2535
+ - ReactCommon/turbomodule/bridging
2536
+ - ReactCommon/turbomodule/core
2537
+ - Yoga
2538
+ - RNSentry (5.36.0):
523
2539
  - DoubleConversion
524
2540
  - glog
525
- - RCT-Folly (= 2021.07.22.00)
526
- - React-callinvoker (= 0.72.5)
527
- - React-cxxreact (= 0.72.5)
528
- - React-jsi (= 0.72.5)
529
- - React-logger (= 0.72.5)
530
- - React-perflogger (= 0.72.5)
531
- - ReactCommon/turbomodule/core (0.72.5):
2541
+ - hermes-engine
2542
+ - RCT-Folly (= 2024.11.18.00)
2543
+ - RCTRequired
2544
+ - RCTTypeSafety
2545
+ - React-Core
2546
+ - React-debug
2547
+ - React-Fabric
2548
+ - React-featureflags
2549
+ - React-graphics
2550
+ - React-hermes
2551
+ - React-ImageManager
2552
+ - React-NativeModulesApple
2553
+ - React-RCTFabric
2554
+ - React-rendererdebug
2555
+ - React-utils
2556
+ - ReactCodegen
2557
+ - ReactCommon/turbomodule/bridging
2558
+ - ReactCommon/turbomodule/core
2559
+ - Sentry/HybridSDK (= 8.41.0)
2560
+ - Yoga
2561
+ - RNSVG (15.12.0):
532
2562
  - DoubleConversion
533
2563
  - glog
534
- - RCT-Folly (= 2021.07.22.00)
535
- - React-callinvoker (= 0.72.5)
536
- - React-cxxreact (= 0.72.5)
537
- - React-jsi (= 0.72.5)
538
- - React-logger (= 0.72.5)
539
- - React-perflogger (= 0.72.5)
540
- - RNCAsyncStorage (1.21.0):
541
- - React-Core
542
- - RNCClipboard (1.13.2):
543
- - React-Core
544
- - RNCPicker (2.6.1):
545
- - React-Core
546
- - RNDeviceInfo (11.1.0):
547
- - React-Core
548
- - RNFS (2.20.0):
549
- - React-Core
550
- - RNGestureHandler (2.14.1):
551
- - RCT-Folly (= 2021.07.22.00)
552
- - React-Core
553
- - RNLocalize (3.1.0-0.0.1):
554
- - React-Core
555
- - RNPermissions (4.1.2):
556
- - React-Core
557
- - RNScreens (3.33.0):
558
- - RCT-Folly (= 2021.07.22.00)
2564
+ - hermes-engine
2565
+ - RCT-Folly (= 2024.11.18.00)
2566
+ - RCTRequired
2567
+ - RCTTypeSafety
559
2568
  - React-Core
560
- - React-RCTImage
561
- - RNSVG (15.0.0):
2569
+ - React-debug
2570
+ - React-Fabric
2571
+ - React-featureflags
2572
+ - React-graphics
2573
+ - React-ImageManager
2574
+ - React-NativeModulesApple
2575
+ - React-RCTFabric
2576
+ - React-rendererdebug
2577
+ - React-utils
2578
+ - ReactCodegen
2579
+ - ReactCommon/turbomodule/bridging
2580
+ - ReactCommon/turbomodule/core
2581
+ - RNSVG/common (= 15.12.0)
2582
+ - Yoga
2583
+ - RNSVG/common (15.12.0):
2584
+ - DoubleConversion
2585
+ - glog
2586
+ - hermes-engine
2587
+ - RCT-Folly (= 2024.11.18.00)
2588
+ - RCTRequired
2589
+ - RCTTypeSafety
562
2590
  - React-Core
2591
+ - React-debug
2592
+ - React-Fabric
2593
+ - React-featureflags
2594
+ - React-graphics
2595
+ - React-ImageManager
2596
+ - React-NativeModulesApple
2597
+ - React-RCTFabric
2598
+ - React-rendererdebug
2599
+ - React-utils
2600
+ - ReactCodegen
2601
+ - ReactCommon/turbomodule/bridging
2602
+ - ReactCommon/turbomodule/core
2603
+ - Yoga
563
2604
  - SDWebImage (5.20.0):
564
2605
  - SDWebImage/Core (= 5.20.0)
565
2606
  - SDWebImage/Core (5.20.0)
@@ -571,110 +2612,143 @@ PODS:
571
2612
  - SDWebImageWebPCoder (0.8.4):
572
2613
  - libwebp (~> 1.0)
573
2614
  - SDWebImage/Core (~> 5.10)
2615
+ - Sentry/HybridSDK (8.41.0)
574
2616
  - SnapKit (5.7.1)
575
- - SocketRocket (0.6.1)
2617
+ - SocketRocket (0.7.1)
576
2618
  - SSZipArchive (2.2.2)
577
2619
  - swiftScan (1.2.1)
578
- - VisionCamera (4.0.1):
579
- - VisionCamera/Core (= 4.0.1)
580
- - VisionCamera/React (= 4.0.1)
581
- - VisionCamera/Core (4.0.1)
582
- - VisionCamera/React (4.0.1):
583
- - React-Core
584
- - Yoga (1.14.0)
585
- - YogaKit (1.18.1):
586
- - Yoga (~> 1.14)
2620
+ - VisionCamera (4.7.0):
2621
+ - VisionCamera/Core (= 4.7.0)
2622
+ - VisionCamera/React (= 4.7.0)
2623
+ - VisionCamera/Core (4.7.0)
2624
+ - VisionCamera/React (4.7.0):
2625
+ - React-Core
2626
+ - Yoga (0.0.0)
587
2627
  - YYCache (1.0.4)
588
2628
 
589
2629
  DEPENDENCIES:
2630
+ - Base64 (= 1.1.2)
590
2631
  - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
591
2632
  - "CodePush (from `../node_modules/@xrnjs/react-native-code-push`)"
592
2633
  - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
2634
+ - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
593
2635
  - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
594
- - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
595
- - Flipper (= 0.182.0)
596
- - Flipper-Boost-iOSX (= 1.76.0.1.11)
597
- - Flipper-DoubleConversion (= 3.2.0.1)
598
- - Flipper-Fmt (= 7.1.7)
599
- - Flipper-Folly (= 2.6.10)
600
- - Flipper-Glog (= 0.5.0.5)
601
- - Flipper-PeerTalk (= 0.0.4)
602
- - FlipperKit (= 0.182.0)
603
- - FlipperKit/Core (= 0.182.0)
604
- - FlipperKit/CppBridge (= 0.182.0)
605
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.182.0)
606
- - FlipperKit/FBDefines (= 0.182.0)
607
- - FlipperKit/FKPortForwarding (= 0.182.0)
608
- - FlipperKit/FlipperKitHighlightOverlay (= 0.182.0)
609
- - FlipperKit/FlipperKitLayoutPlugin (= 0.182.0)
610
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.182.0)
611
- - FlipperKit/FlipperKitNetworkPlugin (= 0.182.0)
612
- - FlipperKit/FlipperKitReactPlugin (= 0.182.0)
613
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0)
614
- - FlipperKit/SKIOSNetworkPlugin (= 0.182.0)
2636
+ - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
615
2637
  - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
2638
+ - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
616
2639
  - JRSwizzle
2640
+ - JWT (= 3.0.0-beta.12)
617
2641
  - libavif/libdav1d (= 0.11.1)
2642
+ - lottie-react-native (from `../node_modules/lottie-react-native`)
618
2643
  - MBProgressHUD (= 1.2.0)
619
- - OpenSSL-Universal (= 1.1.1100)
2644
+ - "onfido-react-native-sdk (from `../node_modules/@onfido/react-native-sdk`)"
620
2645
  - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
621
- - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
2646
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
2647
+ - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
2648
+ - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
622
2649
  - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
623
2650
  - React (from `../node_modules/react-native/`)
624
2651
  - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
625
- - React-Codegen (from `build/generated/ios`)
626
2652
  - React-Core (from `../node_modules/react-native/`)
627
- - React-Core/DevSupport (from `../node_modules/react-native/`)
628
2653
  - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
629
2654
  - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
630
2655
  - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
631
2656
  - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
632
- - React-jsc (from `../node_modules/react-native/ReactCommon/jsc`)
2657
+ - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
2658
+ - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
2659
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
2660
+ - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
2661
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
2662
+ - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
2663
+ - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
2664
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
2665
+ - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
2666
+ - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
2667
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
2668
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
633
2669
  - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
634
2670
  - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
635
- - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
2671
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
2672
+ - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
636
2673
  - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
2674
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
2675
+ - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
637
2676
  - react-native-adjust (from `../node_modules/react-native-adjust`)
2677
+ - react-native-blob-util (from `../node_modules/react-native-blob-util`)
2678
+ - "react-native-cameraroll (from `../node_modules/@react-native-camera-roll/camera-roll`)"
638
2679
  - react-native-config (from `../node_modules/react-native-config`)
639
- - "react-native-cookies (from `../node_modules/@react-native-oh-tpl/cookies`)"
2680
+ - "react-native-cookies (from `../node_modules/@react-native-cookies/cookies`)"
2681
+ - react-native-document-picker (from `../node_modules/react-native-document-picker`)
2682
+ - react-native-get-random-values (from `../node_modules/react-native-get-random-values`)
2683
+ - react-native-image-picker (from `../node_modules/react-native-image-picker`)
2684
+ - "react-native-image-resizer (from `../node_modules/@bam.tech/react-native-image-resizer`)"
2685
+ - react-native-modpow (from `../node_modules/react-native-modpow`)
640
2686
  - "react-native-netinfo (from `../node_modules/@react-native-community/netinfo`)"
2687
+ - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`)
2688
+ - react-native-pdf (from `../node_modules/react-native-pdf`)
641
2689
  - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`)
2690
+ - react-native-video (from `../node_modules/react-native-video`)
2691
+ - react-native-view-shot (from `../node_modules/react-native-view-shot`)
2692
+ - react-native-webview (from `../node_modules/react-native-webview`)
642
2693
  - "react-native-xrn-app-utils (from `../node_modules/@xrnjs/app-utils`)"
643
2694
  - "react-native-xrn-asset-loader (from `../node_modules/@xrnjs/asset-loader`)"
644
2695
  - "react-native-xrn-bundle (from `../node_modules/@xrnjs/bundle`)"
645
2696
  - "react-native-xrn-debug-tools (from `../node_modules/@xrnjs/debug-tools`)"
646
2697
  - "react-native-xrn-image (from `../node_modules/@xrnjs/image`)"
2698
+ - "react-native-xrn-keyboard (from `../node_modules/@xrnjs/keyboard`)"
647
2699
  - "react-native-xrn-loading (from `../node_modules/@xrnjs/loading`)"
648
2700
  - "react-native-xrn-modules-core (from `../node_modules/@xrnjs/modules-core`)"
649
2701
  - "react-native-xrn-multi-bundle (from `../node_modules/@xrnjs/multi-bundle`)"
650
2702
  - "react-native-xrn-native-storage (from `../node_modules/@xrnjs/native-storage`)"
651
2703
  - "react-native-xrn-navigation (from `../node_modules/@xrnjs/navigation`)"
2704
+ - "react-native-xrn-network (from `../node_modules/@xrnjs/network`)"
2705
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
652
2706
  - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
653
2707
  - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
2708
+ - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
654
2709
  - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
655
2710
  - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
656
2711
  - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
657
2712
  - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
2713
+ - React-RCTFabric (from `../node_modules/react-native/React`)
2714
+ - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
658
2715
  - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
659
2716
  - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
660
2717
  - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
661
2718
  - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
662
2719
  - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
663
2720
  - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
2721
+ - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
2722
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
664
2723
  - React-rncore (from `../node_modules/react-native/ReactCommon`)
2724
+ - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
2725
+ - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
665
2726
  - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
2727
+ - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
666
2728
  - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
2729
+ - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
667
2730
  - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
2731
+ - ReactAppDependencyProvider (from `build/generated/ios`)
2732
+ - ReactCodegen (from `build/generated/ios`)
668
2733
  - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
2734
+ - ReactNativeKeyboardManager (from `../node_modules/react-native-keyboard-manager`)
669
2735
  - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)"
670
2736
  - "RNCClipboard (from `../node_modules/@react-native-clipboard/clipboard`)"
2737
+ - "RNCMaskedView (from `../node_modules/@react-native-masked-view/masked-view`)"
671
2738
  - "RNCPicker (from `../node_modules/@react-native-picker/picker`)"
2739
+ - "RNCPushNotificationIOS (from `../node_modules/@react-native-community/push-notification-ios`)"
672
2740
  - RNDeviceInfo (from `../node_modules/react-native-device-info`)
2741
+ - RNFastImage (from `../node_modules/react-native-fast-image`)
673
2742
  - RNFS (from `../node_modules/react-native-fs`)
674
2743
  - RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
675
- - "RNLocalize (from `../node_modules/@react-native-oh-tpl/react-native-localize`)"
2744
+ - RNKeychain (from `../node_modules/react-native-keychain`)
2745
+ - RNLinearGradient (from `../node_modules/react-native-linear-gradient`)
2746
+ - RNLocalize (from `../node_modules/react-native-localize`)
676
2747
  - RNPermissions (from `../node_modules/react-native-permissions`)
2748
+ - "RNPullToRefresh (from `../node_modules/@sdcx/pull-to-refresh`)"
2749
+ - RNReanimated (from `../node_modules/react-native-reanimated`)
677
2750
  - RNScreens (from `../node_modules/react-native-screens`)
2751
+ - "RNSentry (from `../node_modules/@sentry/react-native`)"
678
2752
  - RNSVG (from `../node_modules/react-native-svg`)
679
2753
  - SDWebImage (= 5.20.0)
680
2754
  - SDWebImageAVIFCoder (= 0.11.0)
@@ -690,34 +2764,25 @@ SPEC REPOS:
690
2764
  trunk:
691
2765
  - Adjust
692
2766
  - Base64
693
- - CocoaAsyncSocket
694
- - Flipper
695
- - Flipper-Boost-iOSX
696
- - Flipper-DoubleConversion
697
- - Flipper-Fmt
698
- - Flipper-Folly
699
- - Flipper-Glog
700
- - Flipper-PeerTalk
701
- - FlipperKit
702
- - fmt
2767
+ - IQKeyboardManagerSwift
703
2768
  - JRSwizzle
704
2769
  - JWT
705
2770
  - libavif
706
2771
  - libdav1d
707
- - libevent
708
2772
  - libwebp
709
2773
  - lottie-ios
710
2774
  - MBProgressHUD
711
- - OpenSSL-Universal
2775
+ - Onfido
2776
+ - React-Codegen
712
2777
  - SDWebImage
713
2778
  - SDWebImageAVIFCoder
714
2779
  - SDWebImageSVGCoder
715
2780
  - SDWebImageWebPCoder
2781
+ - Sentry
716
2782
  - SnapKit
717
2783
  - SocketRocket
718
2784
  - SSZipArchive
719
2785
  - swiftScan
720
- - YogaKit
721
2786
  - YYCache
722
2787
 
723
2788
  EXTERNAL SOURCES:
@@ -727,24 +2792,33 @@ EXTERNAL SOURCES:
727
2792
  :path: "../node_modules/@xrnjs/react-native-code-push"
728
2793
  DoubleConversion:
729
2794
  :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
2795
+ fast_float:
2796
+ :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
730
2797
  FBLazyVector:
731
2798
  :path: "../node_modules/react-native/Libraries/FBLazyVector"
732
- FBReactNativeSpec:
733
- :path: "../node_modules/react-native/React/FBReactNativeSpec"
2799
+ fmt:
2800
+ :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
734
2801
  glog:
735
2802
  :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
2803
+ hermes-engine:
2804
+ :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
2805
+ :tag: hermes-2024-11-25-RNv0.77.0-d4f25d534ab744866448b36ca3bf3d97c08e638c
2806
+ lottie-react-native:
2807
+ :path: "../node_modules/lottie-react-native"
2808
+ onfido-react-native-sdk:
2809
+ :path: "../node_modules/@onfido/react-native-sdk"
736
2810
  RCT-Folly:
737
2811
  :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
2812
+ RCTDeprecation:
2813
+ :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
738
2814
  RCTRequired:
739
- :path: "../node_modules/react-native/Libraries/RCTRequired"
2815
+ :path: "../node_modules/react-native/Libraries/Required"
740
2816
  RCTTypeSafety:
741
2817
  :path: "../node_modules/react-native/Libraries/TypeSafety"
742
2818
  React:
743
2819
  :path: "../node_modules/react-native/"
744
2820
  React-callinvoker:
745
2821
  :path: "../node_modules/react-native/ReactCommon/callinvoker"
746
- React-Codegen:
747
- :path: build/generated/ios
748
2822
  React-Core:
749
2823
  :path: "../node_modules/react-native/"
750
2824
  React-CoreModules:
@@ -753,26 +2827,78 @@ EXTERNAL SOURCES:
753
2827
  :path: "../node_modules/react-native/ReactCommon/cxxreact"
754
2828
  React-debug:
755
2829
  :path: "../node_modules/react-native/ReactCommon/react/debug"
756
- React-jsc:
757
- :path: "../node_modules/react-native/ReactCommon/jsc"
2830
+ React-defaultsnativemodule:
2831
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
2832
+ React-domnativemodule:
2833
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
2834
+ React-Fabric:
2835
+ :path: "../node_modules/react-native/ReactCommon"
2836
+ React-FabricComponents:
2837
+ :path: "../node_modules/react-native/ReactCommon"
2838
+ React-FabricImage:
2839
+ :path: "../node_modules/react-native/ReactCommon"
2840
+ React-featureflags:
2841
+ :path: "../node_modules/react-native/ReactCommon/react/featureflags"
2842
+ React-featureflagsnativemodule:
2843
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
2844
+ React-graphics:
2845
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
2846
+ React-hermes:
2847
+ :path: "../node_modules/react-native/ReactCommon/hermes"
2848
+ React-idlecallbacksnativemodule:
2849
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
2850
+ React-ImageManager:
2851
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
2852
+ React-jserrorhandler:
2853
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
758
2854
  React-jsi:
759
2855
  :path: "../node_modules/react-native/ReactCommon/jsi"
760
2856
  React-jsiexecutor:
761
2857
  :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
762
2858
  React-jsinspector:
763
- :path: "../node_modules/react-native/ReactCommon/jsinspector"
2859
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
2860
+ React-jsitracing:
2861
+ :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
764
2862
  React-logger:
765
2863
  :path: "../node_modules/react-native/ReactCommon/logger"
2864
+ React-Mapbuffer:
2865
+ :path: "../node_modules/react-native/ReactCommon"
2866
+ React-microtasksnativemodule:
2867
+ :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
766
2868
  react-native-adjust:
767
2869
  :path: "../node_modules/react-native-adjust"
2870
+ react-native-blob-util:
2871
+ :path: "../node_modules/react-native-blob-util"
2872
+ react-native-cameraroll:
2873
+ :path: "../node_modules/@react-native-camera-roll/camera-roll"
768
2874
  react-native-config:
769
2875
  :path: "../node_modules/react-native-config"
770
2876
  react-native-cookies:
771
- :path: "../node_modules/@react-native-oh-tpl/cookies"
2877
+ :path: "../node_modules/@react-native-cookies/cookies"
2878
+ react-native-document-picker:
2879
+ :path: "../node_modules/react-native-document-picker"
2880
+ react-native-get-random-values:
2881
+ :path: "../node_modules/react-native-get-random-values"
2882
+ react-native-image-picker:
2883
+ :path: "../node_modules/react-native-image-picker"
2884
+ react-native-image-resizer:
2885
+ :path: "../node_modules/@bam.tech/react-native-image-resizer"
2886
+ react-native-modpow:
2887
+ :path: "../node_modules/react-native-modpow"
772
2888
  react-native-netinfo:
773
2889
  :path: "../node_modules/@react-native-community/netinfo"
2890
+ react-native-orientation-locker:
2891
+ :path: "../node_modules/react-native-orientation-locker"
2892
+ react-native-pdf:
2893
+ :path: "../node_modules/react-native-pdf"
774
2894
  react-native-safe-area-context:
775
2895
  :path: "../node_modules/react-native-safe-area-context"
2896
+ react-native-video:
2897
+ :path: "../node_modules/react-native-video"
2898
+ react-native-view-shot:
2899
+ :path: "../node_modules/react-native-view-shot"
2900
+ react-native-webview:
2901
+ :path: "../node_modules/react-native-webview"
776
2902
  react-native-xrn-app-utils:
777
2903
  :path: "../node_modules/@xrnjs/app-utils"
778
2904
  react-native-xrn-asset-loader:
@@ -783,6 +2909,8 @@ EXTERNAL SOURCES:
783
2909
  :path: "../node_modules/@xrnjs/debug-tools"
784
2910
  react-native-xrn-image:
785
2911
  :path: "../node_modules/@xrnjs/image"
2912
+ react-native-xrn-keyboard:
2913
+ :path: "../node_modules/@xrnjs/keyboard"
786
2914
  react-native-xrn-loading:
787
2915
  :path: "../node_modules/@xrnjs/loading"
788
2916
  react-native-xrn-modules-core:
@@ -793,10 +2921,16 @@ EXTERNAL SOURCES:
793
2921
  :path: "../node_modules/@xrnjs/native-storage"
794
2922
  react-native-xrn-navigation:
795
2923
  :path: "../node_modules/@xrnjs/navigation"
2924
+ react-native-xrn-network:
2925
+ :path: "../node_modules/@xrnjs/network"
2926
+ React-nativeconfig:
2927
+ :path: "../node_modules/react-native/ReactCommon"
796
2928
  React-NativeModulesApple:
797
2929
  :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
798
2930
  React-perflogger:
799
2931
  :path: "../node_modules/react-native/ReactCommon/reactperflogger"
2932
+ React-performancetimeline:
2933
+ :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
800
2934
  React-RCTActionSheet:
801
2935
  :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
802
2936
  React-RCTAnimation:
@@ -805,6 +2939,10 @@ EXTERNAL SOURCES:
805
2939
  :path: "../node_modules/react-native/Libraries/AppDelegate"
806
2940
  React-RCTBlob:
807
2941
  :path: "../node_modules/react-native/Libraries/Blob"
2942
+ React-RCTFabric:
2943
+ :path: "../node_modules/react-native/React"
2944
+ React-RCTFBReactNativeSpec:
2945
+ :path: "../node_modules/react-native/React"
808
2946
  React-RCTImage:
809
2947
  :path: "../node_modules/react-native/Libraries/Image"
810
2948
  React-RCTLinking:
@@ -817,34 +2955,68 @@ EXTERNAL SOURCES:
817
2955
  :path: "../node_modules/react-native/Libraries/Text"
818
2956
  React-RCTVibration:
819
2957
  :path: "../node_modules/react-native/Libraries/Vibration"
2958
+ React-rendererconsistency:
2959
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
2960
+ React-rendererdebug:
2961
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
820
2962
  React-rncore:
821
2963
  :path: "../node_modules/react-native/ReactCommon"
2964
+ React-RuntimeApple:
2965
+ :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
2966
+ React-RuntimeCore:
2967
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
822
2968
  React-runtimeexecutor:
823
2969
  :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
2970
+ React-RuntimeHermes:
2971
+ :path: "../node_modules/react-native/ReactCommon/react/runtime"
824
2972
  React-runtimescheduler:
825
2973
  :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
2974
+ React-timing:
2975
+ :path: "../node_modules/react-native/ReactCommon/react/timing"
826
2976
  React-utils:
827
2977
  :path: "../node_modules/react-native/ReactCommon/react/utils"
2978
+ ReactAppDependencyProvider:
2979
+ :path: build/generated/ios
2980
+ ReactCodegen:
2981
+ :path: build/generated/ios
828
2982
  ReactCommon:
829
2983
  :path: "../node_modules/react-native/ReactCommon"
2984
+ ReactNativeKeyboardManager:
2985
+ :path: "../node_modules/react-native-keyboard-manager"
830
2986
  RNCAsyncStorage:
831
2987
  :path: "../node_modules/@react-native-async-storage/async-storage"
832
2988
  RNCClipboard:
833
2989
  :path: "../node_modules/@react-native-clipboard/clipboard"
2990
+ RNCMaskedView:
2991
+ :path: "../node_modules/@react-native-masked-view/masked-view"
834
2992
  RNCPicker:
835
2993
  :path: "../node_modules/@react-native-picker/picker"
2994
+ RNCPushNotificationIOS:
2995
+ :path: "../node_modules/@react-native-community/push-notification-ios"
836
2996
  RNDeviceInfo:
837
2997
  :path: "../node_modules/react-native-device-info"
2998
+ RNFastImage:
2999
+ :path: "../node_modules/react-native-fast-image"
838
3000
  RNFS:
839
3001
  :path: "../node_modules/react-native-fs"
840
3002
  RNGestureHandler:
841
3003
  :path: "../node_modules/react-native-gesture-handler"
3004
+ RNKeychain:
3005
+ :path: "../node_modules/react-native-keychain"
3006
+ RNLinearGradient:
3007
+ :path: "../node_modules/react-native-linear-gradient"
842
3008
  RNLocalize:
843
- :path: "../node_modules/@react-native-oh-tpl/react-native-localize"
3009
+ :path: "../node_modules/react-native-localize"
844
3010
  RNPermissions:
845
3011
  :path: "../node_modules/react-native-permissions"
3012
+ RNPullToRefresh:
3013
+ :path: "../node_modules/@sdcx/pull-to-refresh"
3014
+ RNReanimated:
3015
+ :path: "../node_modules/react-native-reanimated"
846
3016
  RNScreens:
847
3017
  :path: "../node_modules/react-native-screens"
3018
+ RNSentry:
3019
+ :path: "../node_modules/@sentry/react-native"
848
3020
  RNSVG:
849
3021
  :path: "../node_modules/react-native-svg"
850
3022
  VisionCamera:
@@ -855,101 +3027,145 @@ EXTERNAL SOURCES:
855
3027
  SPEC CHECKSUMS:
856
3028
  Adjust: c98d85594a746ff9f2bafe424c5beb6db66cd6a8
857
3029
  Base64: cecfb41a004124895a7bcee567a89bae5a89d49b
858
- boost: 7dcd2de282d72e344012f7d6564d024930a6a440
859
- CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
860
- CodePush: 30155d7da5c4574b8cb39fca19c70841cb7cd35c
861
- DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
862
- FBLazyVector: 71803c074f6325f10b5ec891c443b6bbabef0ca7
863
- FBReactNativeSpec: 448e08a759d29a96e15725ae532445bf4343567c
864
- Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818
865
- Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
866
- Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
867
- Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
868
- Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
869
- Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
870
- Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
871
- FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6
872
- fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
873
- glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
3030
+ boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
3031
+ CodePush: da14bb3aec7e2bee1a6af656cb38968c89457115
3032
+ DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
3033
+ fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
3034
+ FBLazyVector: 79c4b7ec726447eec5f8593379466bd9fde1aa14
3035
+ fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
3036
+ glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8
3037
+ hermes-engine: ccc24d29d650ea725d582a9a53d57cd417fbdb53
3038
+ IQKeyboardManagerSwift: 12d89768845bb77b55cc092ecc2b1f9370f06b76
874
3039
  JRSwizzle: 7a6fdfe05231e2de26eb14835622d4c6c20c0b6c
875
3040
  JWT: 9b5c05abbcc1a0e69c3c91e1655b3387fc7e581d
876
3041
  libavif: 84bbb62fb232c3018d6f1bab79beea87e35de7b7
877
3042
  libdav1d: 23581a4d8ec811ff171ed5e2e05cd27bad64c39f
878
- libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
879
- libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
880
- lottie-ios: 3d98679b41fa6fd6aff2352b3953dbd3df8a397e
3043
+ libwebp: af5937a13536ef73f3784d69cc342b98961acf33
3044
+ lottie-ios: a881093fab623c467d3bce374367755c272bdd59
3045
+ lottie-react-native: 28e5b80459ee6723917995556657e54b98bb16bc
881
3046
  MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406
882
- OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
883
- RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
884
- RCTRequired: df81ab637d35fac9e6eb94611cfd20f0feb05455
885
- RCTTypeSafety: 4636e4a36c7c2df332bda6d59b19b41c443d4287
886
- React: e0cc5197a804031a6c53fb38483c3485fcb9d6f3
887
- React-callinvoker: 1a635856fe0c3d8b13fccd4ed7e76283b99b0868
888
- React-Codegen: 2c2e23ede5a87859465582502ff61c7f63bc1ed8
889
- React-Core: 5bb7f0f43a6fae733201a0396521bec7c1b062c0
890
- React-CoreModules: f8b9e91fac7bd5d18729ce961a4978c70b5031cc
891
- React-cxxreact: 2fd17904f2d5ab7318e5432cf24de225cbf1768f
892
- React-debug: ee33d7ba43766d9b10b32561527b57ccfbcb6bd1
893
- React-jsc: f4a2687433840ec8c1be9d2f557fe71a7b5e66b5
894
- React-jsi: bd20f0acd279dee534d8b731b31131f443b00868
895
- React-jsiexecutor: f32f98d8ddbdfd97dea286af90381a731d68c505
896
- React-jsinspector: aef73cbd43b70675f572214d10fa438c89bf11ba
897
- React-logger: 2e4aee3e11b3ec4fa6cfd8004610bbb3b8d6cca4
898
- react-native-adjust: 801fe33f0dc0097b0474f11d08572a89fa6602ce
899
- react-native-config: 8f7283449bbb048902f4e764affbbf24504454af
900
- react-native-cookies: 57c3f1ef1e29a45d6a53d43f0138955eb217b2b5
901
- react-native-netinfo: 076df4f9b07f6670acf4ce9a75aac8d34c2e2ccc
902
- react-native-safe-area-context: 2cd91d532de12acdb0a9cbc8d43ac72a8e4c897c
903
- react-native-xrn-app-utils: d11311a90cdd89c542d3751124b25db6b788ef06
904
- react-native-xrn-asset-loader: 4845e58ba5d89f3ec5b08871dea26d6b00443839
905
- react-native-xrn-bundle: 95e4e6c9daf40c96cb904e8228454ebc698f4f28
906
- react-native-xrn-debug-tools: 460f9d8198d1443e45c4b86d4b69db470b4f5888
907
- react-native-xrn-image: 0b6fb6814d54c929c166657c335f2a7291cdcea5
908
- react-native-xrn-loading: b363c1a7925ef45f4f1e66cb60abcf06437e252a
909
- react-native-xrn-modules-core: f2fd62bbb0b1d1fba6a58062af3da7e893c93e0a
910
- react-native-xrn-multi-bundle: 92e549ce40ea7fbd6edb74e5af070525441de24a
911
- react-native-xrn-native-storage: 3eb62e5244321fb7c65ebe4d7e1dbf06e0fa908b
912
- react-native-xrn-navigation: efc6e639a9e5e40c8a4286bf5c72dfc71c32b415
913
- React-NativeModulesApple: c6529c637f2e886aab44c48d66cabef2d4fd1138
914
- React-perflogger: cd8886513f68e1c135a1e79d20575c6489641597
915
- React-RCTActionSheet: 726d2615ca62a77ce3e2c13d87f65379cdc73498
916
- React-RCTAnimation: 8f2716b881c37c64858e4ecee0f58bfa57ff9afd
917
- React-RCTAppDelegate: fa1c94d4c789a37c64bf1ba9f7bc0038beb6c2be
918
- React-RCTBlob: 3e6120f6abbc7b8dc173da0db633d67cec7f66b7
919
- React-RCTImage: 747e3d7b656a67470f9c234baedb8d41bbc4e745
920
- React-RCTLinking: 148332b5b0396b280b05534f7d168e560a3bbd5f
921
- React-RCTNetwork: 1d818121a8e678f064de663a6db7aaefc099e53c
922
- React-RCTSettings: 4b95d26ebc88bfd3b6535b2d7904914ff88dbfc2
923
- React-RCTText: ce4499e4f2d8f85dc4b93ff0559313a016c4f3e2
924
- React-RCTVibration: 45372e61b35e96d16893540958d156675afbeb63
925
- React-rncore: a79d1cb3d6c01b358a8aa0b31ccc04ab5f0dbebc
926
- React-runtimeexecutor: 7e31e2bc6d0ecc83d4ba05eadc98401007abc10c
927
- React-runtimescheduler: 05bede38cb51ae152f31707022e881ee9ae970ab
928
- React-utils: 7a9918a1ffdd39aba67835d42386f592ea3f8e76
929
- ReactCommon: a77b3916d0d39113b5f0de714a0acd47c9d17c3a
930
- RNCAsyncStorage: 618d03a5f52fbccb3d7010076bc54712844c18ef
931
- RNCClipboard: 60fed4b71560d7bfe40e9d35dea9762b024da86d
932
- RNCPicker: b18aaf30df596e9b1738e7c1f9ee55402a229dca
933
- RNDeviceInfo: b899ce37a403a4dea52b7cb85e16e49c04a5b88e
934
- RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
935
- RNGestureHandler: fe2be3be5598dc74329b211c58c9f2d231461769
936
- RNLocalize: 2b6883cb015c8e426b57307e426a03254e56f20b
937
- RNPermissions: c79198295f91efddfaf54f7b714a16bdda60f40f
938
- RNScreens: 03acbdcf84e1bf6832ba83dbe3601eae20c55de0
939
- RNSVG: 3f65a03e0c61a8495dee92bf82545ed9041cbf3b
3047
+ Onfido: c2325ed2ce1f8eb46cde63e1ade0c1c54374ef7f
3048
+ onfido-react-native-sdk: a590456b7ca20d3711392c1f64e1cbeef78fc9cd
3049
+ RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
3050
+ RCTDeprecation: 664055db806cce35c3c1b43c84414dd66e117ae6
3051
+ RCTRequired: dc9a83fa1012054f94430d210337ca3a1afe6fc0
3052
+ RCTTypeSafety: 031cefa254a1df313a196f105b8fcffdab1c5ab6
3053
+ React: 8edfc46c315852ec88ea4a29d5e79019af3dc667
3054
+ React-callinvoker: 4450b01574dfc7a8f074f7e29e6965ac04859c8f
3055
+ React-Codegen: 4b8b4817cea7a54b83851d4c1f91f79aa73de30a
3056
+ React-Core: adee73236280f8708e8973b8cbc60c834e591ecb
3057
+ React-CoreModules: 78e04d2319b1b61e0d4ed7fcd3e366d461819279
3058
+ React-cxxreact: 05d4cfc36a33f309f280753995bf77eb5f12b40e
3059
+ React-debug: b0f7271aeacc2eb9e34f863397dcfc204ef721c0
3060
+ React-defaultsnativemodule: 9ce2a0afe47f3b724f8adec28de3712d897a069a
3061
+ React-domnativemodule: 23a99da612d4a41f05f7c0f9665bd557638f3a99
3062
+ React-Fabric: 189561e6cd72aacbd6a1bc92fa98b12ae2717d2b
3063
+ React-FabricComponents: 32650e154e3958fedd1de88a94cef27e52288d7e
3064
+ React-FabricImage: 5e81e0fae1817eec1840408be77c7e6ba3e2ee98
3065
+ React-featureflags: 23d3dcdac6c9badeeb631db8a0883c7a3108d580
3066
+ React-featureflagsnativemodule: f374752cb62a577a3bca18d01d1c80dcaeb29299
3067
+ React-graphics: 348400b8ba57611d552af6db5dc7d42ccf132d08
3068
+ React-hermes: daf648f84569e9cb3d563dd806f09cf14635a356
3069
+ React-idlecallbacksnativemodule: 97d2eb4935fa459d2f1127ce594c3b1959b0828d
3070
+ React-ImageManager: ee8526b1af93152133709104c6d649d5dada63b3
3071
+ React-jserrorhandler: 17774783cd8d1377d3b23efbd4af4e80a2bca065
3072
+ React-jsi: 2b9e6349efb0cd61b871dcd6db126fb13e1e6488
3073
+ React-jsiexecutor: 8050076ff38e95a6852c5af0f516cf05889a3737
3074
+ React-jsinspector: 55187c59747d78d14dae0d301beef22559099348
3075
+ React-jsitracing: 9e7066f99151f99ed588f2055e011845b12a1bf6
3076
+ React-logger: e7eeebaed32b88dcc29b10901aa8c5822dc397c4
3077
+ React-Mapbuffer: 73dd1210c4ecf0dfb4e2d4e06f2a13f824a801a9
3078
+ React-microtasksnativemodule: d03753688e2abf135edcd4160ab3ce7526da8b0d
3079
+ react-native-adjust: e23aa15c4286132bd04abbc5a172b9e099cf4def
3080
+ react-native-blob-util: fd7452479542ef18997bac6e2869cf1bfceeb925
3081
+ react-native-cameraroll: b93d0a5f753817f337cb32a5e245814f6961c628
3082
+ react-native-config: 644074ab88db883fcfaa584f03520ec29589d7df
3083
+ react-native-cookies: d648ab7025833b977c0b19e142503034f5f29411
3084
+ react-native-document-picker: bfe9c7d72908d2faba56a4765373c6367090ae2e
3085
+ react-native-get-random-values: d16467cf726c618e9c7a8c3c39c31faa2244bbba
3086
+ react-native-image-picker: 84b261e109faa7312bca59f1f65c8f2b22865496
3087
+ react-native-image-resizer: 9e24efe3828c08a8d5553393f33695a086406340
3088
+ react-native-modpow: 7c07b13f9c63580ebc52d26f81572ac81d3ab521
3089
+ react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187
3090
+ react-native-orientation-locker: cc6f357b289a2e0dd2210fea0c52cb8e0727fdaa
3091
+ react-native-pdf: 4cdc0331bd03b72e26603593ba7e7409989ed9f5
3092
+ react-native-safe-area-context: efd435f89b73d91f37438e5ac2d725f0e7adff95
3093
+ react-native-video: d5047e417227b0c3bc9c2be83ec70d7103c08335
3094
+ react-native-view-shot: a38d952d5c7103b79a67c8aa82da95f98be6e5c2
3095
+ react-native-webview: 80ef603d1df42e24fdde765686fbb9b8a6ecd554
3096
+ react-native-xrn-app-utils: 0e22f1dec09f8bf9316fbb08d0f6b51afc097f57
3097
+ react-native-xrn-asset-loader: 58576e43a0839741365a8e669f29f3766ef070e1
3098
+ react-native-xrn-bundle: 88dd53dd2a536367df48595df8a24916e0709845
3099
+ react-native-xrn-debug-tools: 760c7b01130d96ab5d0cfeb375f988d41a1dd66a
3100
+ react-native-xrn-image: 6ed1923bf71e7bf58f86374f92d9f23dde46d910
3101
+ react-native-xrn-keyboard: 4f1698cc92b4dcbee52ecb77cc2c83e55be8dcaa
3102
+ react-native-xrn-loading: 88043c8ab130808b92d13b3c1297bc5f188aaf49
3103
+ react-native-xrn-modules-core: 9a2189774db44a8d68b28f2e711adc1546135f65
3104
+ react-native-xrn-multi-bundle: f66c43c91d67b05bfcd625481e909191b0001365
3105
+ react-native-xrn-native-storage: 92b018f8fc9ce372cb6fad15828552592e6739a5
3106
+ react-native-xrn-navigation: e750801ea474a877b6888e265b48e97d047a7218
3107
+ react-native-xrn-network: 6a97b36fc089fd835891ae597f000e6f36056f6e
3108
+ React-nativeconfig: cb207ebba7cafce30657c7ad9f1587a8f32e4564
3109
+ React-NativeModulesApple: 8411d548b1ad9d2b3e597beb9348e715c8020e0c
3110
+ React-perflogger: c4c3b7c18f8a50cdbe2bcdd2f15705ba029a5a02
3111
+ React-performancetimeline: 38bda258bd9f9da19b27615e8edfbec064aa42cc
3112
+ React-RCTActionSheet: 0fdf55fb8724856d63ca8c63cdb4e2325e15e8ec
3113
+ React-RCTAnimation: b2fcc7c462f1fb5e195a5547f6e405ec9a60d80f
3114
+ React-RCTAppDelegate: d5aed095faa6fd0b0aff3c98d0b078680890cde2
3115
+ React-RCTBlob: 3b5441953e3dcc4aaee8f539b17d9c54b7a4b111
3116
+ React-RCTFabric: 022ff67d55ac5833b984085628e15af113cd9b52
3117
+ React-RCTFBReactNativeSpec: 536442edc77efaec464c3c805c1e44fd811639d3
3118
+ React-RCTImage: f189ae651e3c97879b4cdefcba1d4cffe55439da
3119
+ React-RCTLinking: 759ac5e4aed95ac3c29849f98ff3f3b5ece830ed
3120
+ React-RCTNetwork: ce1f38434a70eb1e228344f7632e636c3ceca03b
3121
+ React-RCTSettings: 3602ea3adf9009f6d09461bf05f7e392414c32d8
3122
+ React-RCTText: e48b4b54eab3f4cfea9be1228b5ef9ad3b8172c1
3123
+ React-RCTVibration: 2e4dc335dd1e57c7004bcc07e7f5319e5968d5cf
3124
+ React-rendererconsistency: c766ce7261ab6ed6be7bc155c403e29436d4f156
3125
+ React-rendererdebug: f8bf864b2646944c3f7c41555dbed0b5d7aea5d1
3126
+ React-rncore: cafe45e14d870bbecbbf4bd89e12ef3b596e1f2d
3127
+ React-RuntimeApple: d3f5e05cfd5e212077a2e8dbdcf051ee237273b4
3128
+ React-RuntimeCore: 3c513c4cad66a889614fc4b70fadacdf900f0c7a
3129
+ React-runtimeexecutor: 201311bdafb53b5c30292782c8ee90193af86d91
3130
+ React-RuntimeHermes: 25194897d244f2c1b68511926c7be413466f6e6c
3131
+ React-runtimescheduler: b2839d0c1276b8f0edabc28414c9a5c82bb5c700
3132
+ React-timing: 127d8598b5a15ae5b29ebd0ec474d590285c6f2f
3133
+ React-utils: 238c18f8035ace0faccd7e8ce574ccfc7adf26aa
3134
+ ReactAppDependencyProvider: 41e9fb63606c32cce924653d2d410cb01ec81286
3135
+ ReactCodegen: d9a09a7f7eee93f54d0b4135d5ca66b31b0c42a5
3136
+ ReactCommon: 08f4808f02ff115884e870e5cfea689703ff759a
3137
+ ReactNativeKeyboardManager: 5abe57da962b386508945888c75abee4b93f382d
3138
+ RNCAsyncStorage: 79cfba789fca205b204f3ce7948b874500129eb4
3139
+ RNCClipboard: f13dd3ceae005858e137ae9e70f3c414e174ff81
3140
+ RNCMaskedView: 308c763227e237d4d260bd8841870e099572bb3e
3141
+ RNCPicker: 490a52d042dc1db36dc979947fced02fd1cf476e
3142
+ RNCPushNotificationIOS: 6c4ca3388c7434e4a662b92e4dfeeee858e6f440
3143
+ RNDeviceInfo: d863506092aef7e7af3a1c350c913d867d795047
3144
+ RNFastImage: 83bb7f76af17cc8b63ac3a344971d0c40968b591
3145
+ RNFS: 89de7d7f4c0f6bafa05343c578f61118c8282ed8
3146
+ RNGestureHandler: dcb1b1db024f3744b03af56d132f4f72c4c27195
3147
+ RNKeychain: bbe2f6d5cc008920324acb49ef86ccc03d3b38e4
3148
+ RNLinearGradient: 7cacd15d94656da898eaec1c78fd4a389806ea7b
3149
+ RNLocalize: 7ed277415799ab5a8931b77fd2124c4749822e8a
3150
+ RNPermissions: f7599748186cb94c2efc7a61c1db2da9ac42e26e
3151
+ RNPullToRefresh: d0c3ac19d52b73d2254f7f0a9422daa71e45178d
3152
+ RNReanimated: 11826a4c433df9d37c12352ab34e48d6043fc751
3153
+ RNScreens: 40f4d6b58fa33751b8b2b5450e3595898a993ad5
3154
+ RNSentry: 67fc623fba94adadf474660829dfe562a520a88c
3155
+ RNSVG: 85f373e6a24cf79a882d4809f3633946ed9facb8
940
3156
  SDWebImage: 73c6079366fea25fa4bb9640d5fb58f0893facd8
941
3157
  SDWebImageAVIFCoder: 00310d246aab3232ce77f1d8f0076f8c4b021d90
942
3158
  SDWebImageSVGCoder: 15a300a97ec1c8ac958f009c02220ac0402e936c
943
3159
  SDWebImageWebPCoder: f93010f3f6c031e2f8fb3081ca4ee6966c539815
3160
+ Sentry: 54d0fe6c0df448497c8ed4cce66ccf7027e1823e
944
3161
  SnapKit: d612e99e678a2d3b95bf60b0705ed0a35c03484a
945
- SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
3162
+ SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
946
3163
  SSZipArchive: fa16b8cc4cdeceb698e5e5d9f67e9558532fbf23
947
3164
  swiftScan: 0849e7d7c1c641384767a573ee8cb90b88d1ddd9
948
- VisionCamera: 5787602f86d8521f17af0e606259b6d367754e74
949
- Yoga: 86fed2e4d425ee4c6eab3813ba1791101ee153c6
950
- YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
3165
+ VisionCamera: c5c07db74721d37f4c9f8331ad1f8da7b2539995
3166
+ Yoga: 1fd059161b449018342943b095a6d4e69bcaa719
951
3167
  YYCache: 8105b6638f5e849296c71f331ff83891a4942952
952
3168
 
953
- PODFILE CHECKSUM: 4ae49b60edae599e11114b3fe272b79da565abb9
3169
+ PODFILE CHECKSUM: 42e5e682dbc09349807bebef4f4595c5071dd1c5
954
3170
 
955
3171
  COCOAPODS: 1.16.2