Skip to content

Commit 13ac34d

Browse files
committed
chore: sync with upstream
1 parent 8a8c8ff commit 13ac34d

File tree

12 files changed

+92
-447
lines changed

12 files changed

+92
-447
lines changed

packages/out-of-tree-platforms/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@callstack/out-of-tree-platforms",
3-
"version": "0.76.0-main",
3+
"version": "0.77.0-main",
44
"description": "Utils for React Native out of tree platforms.",
55
"keywords": ["out-of-tree", "react-native"],
66
"homepage": "https://github.com/callstack/react-native-visionos/tree/HEAD/packages/out-of-tree-platforms#readme",
@@ -19,7 +19,7 @@
1919
"dist"
2020
],
2121
"devDependencies": {
22-
"metro-resolver": "^0.80.0"
22+
"metro-resolver": "^0.81.0-alpha.0"
2323
},
2424
"engines": {
2525
"node": ">=18"

packages/react-native/React/Base/RCTConvert.mm

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -546,22 +546,6 @@ + (UIKeyboardType)UIKeyboardType:(id)json RCT_DYNAMIC
546546
UIViewContentModeScaleAspectFill,
547547
integerValue)
548548

549-
RCT_ENUM_CONVERTER(
550-
UIBarStyle,
551-
(@{
552-
@"default" : @(UIBarStyleDefault),
553-
@"black" : @(UIBarStyleBlack),
554-
#if TARGET_OS_VISION
555-
@"blackOpaque" : @(UIBarStyleBlack),
556-
@"blackTranslucent" : @(UIBarStyleBlack),
557-
#else
558-
@"blackOpaque" : @(UIBarStyleBlackOpaque),
559-
@"blackTranslucent" : @(UIBarStyleBlackTranslucent),
560-
#endif
561-
}),
562-
UIBarStyleDefault,
563-
integerValue)
564-
565549
RCT_ENUM_CONVERTER(
566550
RCTCursor,
567551
(@{

packages/react-native/React/Base/RCTKeyCommands.m

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,12 @@ - (void)handleKeyUIEventSwizzle:(UIEvent *)event
127127
if ([event respondsToSelector:@selector(_isKeyDown)]) {
128128
isKeyDown = [event _isKeyDown];
129129
}
130-
130+
#if !TARGET_OS_VISION
131+
BOOL interactionEnabled = !RCTSharedApplication().isIgnoringInteractionEvents;
132+
#else
133+
BOOL interactionEnabled = true;
134+
#endif
135+
BOOL hasFirstResponder = NO;
131136
if (isKeyDown && modifiedInput.length > 0) {
132137
UIResponder *firstResponder = nil;
133138
for (UIWindow *window in [self allWindows]) {

packages/react-native/React/CoreModules/RCTStatusBarManager.mm

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ + (BOOL)requiresMainQueueSetup
7979

8080
- (void)startObserving
8181
{
82-
#if !TARGET_OS_VISION
8382
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
8483
[nc addObserver:self
8584
selector:@selector(applicationDidChangeStatusBarFrame:)
@@ -89,19 +88,15 @@ - (void)startObserving
8988
selector:@selector(applicationWillChangeStatusBarFrame:)
9089
name:UIApplicationWillChangeStatusBarFrameNotification
9190
object:nil];
92-
#endif
9391
}
9492

9593
- (void)stopObserving
9694
{
97-
#if !TARGET_OS_VISION
9895
[[NSNotificationCenter defaultCenter] removeObserver:self];
99-
#endif
10096
}
10197

10298
- (void)emitEvent:(NSString *)eventName forNotification:(NSNotification *)notification
10399
{
104-
#if !TARGET_OS_VISION
105100
CGRect frame = [notification.userInfo[UIApplicationStatusBarFrameUserInfoKey] CGRectValue];
106101
NSDictionary *event = @{
107102
@"frame" : @{
@@ -112,7 +107,6 @@ - (void)emitEvent:(NSString *)eventName forNotification:(NSNotification *)notifi
112107
},
113108
};
114109
[self sendEventWithName:eventName body:event];
115-
#endif
116110
}
117111

118112
- (void)applicationDidChangeStatusBarFrame:(NSNotification *)notification
@@ -134,7 +128,6 @@ - (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification
134128

135129
RCT_EXPORT_METHOD(setStyle : (NSString *)style animated : (BOOL)animated)
136130
{
137-
#if !TARGET_OS_VISION
138131
dispatch_async(dispatch_get_main_queue(), ^{
139132
UIStatusBarStyle statusBarStyle = [RCTConvert UIStatusBarStyle:style];
140133
if (RCTViewControllerBasedStatusBarAppearance()) {
@@ -143,16 +136,14 @@ - (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification
143136
} else {
144137
#pragma clang diagnostic push
145138
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
146-
[RCTSharedApplication() setStatusBarStyle:statusBarStyle animated:animated];
147-
}
139+
[RCTSharedApplication() setStatusBarStyle:statusBarStyle animated:animated];
140+
}
148141
#pragma clang diagnostic pop
149142
});
150-
#endif
151143
}
152144

153145
RCT_EXPORT_METHOD(setHidden : (BOOL)hidden withAnimation : (NSString *)withAnimation)
154146
{
155-
#if !TARGET_OS_VISION
156147
dispatch_async(dispatch_get_main_queue(), ^{
157148
UIStatusBarAnimation animation = [RCTConvert UIStatusBarAnimation:withAnimation];
158149
if (RCTViewControllerBasedStatusBarAppearance()) {
@@ -161,24 +152,21 @@ - (void)applicationWillChangeStatusBarFrame:(NSNotification *)notification
161152
} else {
162153
#pragma clang diagnostic push
163154
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
164-
[RCTSharedApplication() setStatusBarHidden:hidden withAnimation:animation];
155+
[RCTSharedApplication() setStatusBarHidden:hidden withAnimation:animation];
165156
#pragma clang diagnostic pop
166157
}
167158
});
168-
#endif
169159
}
170160

171161
RCT_EXPORT_METHOD(setNetworkActivityIndicatorVisible : (BOOL)visible)
172162
{
173-
#if !TARGET_OS_VISION
174163
dispatch_async(dispatch_get_main_queue(), ^{
175164
#pragma clang diagnostic push
176165
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
177166
// This is no longer supported in iOS 13 and later. We will remove this method in a future release.
178167
RCTSharedApplication().networkActivityIndicatorVisible = visible;
179168
#pragma clang diagnostic pop
180169
});
181-
#endif
182170
}
183171

184172
- (facebook::react::ModuleConstants<JS::NativeStatusBarManagerIOS::Constants>)getConstants

packages/react-native/React/Fabric/Mounting/ComponentViews/Modal/RCTFabricModalHostViewController.mm

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ - (BOOL)prefersStatusBarHidden
6161
#if RCT_DEV && TARGET_OS_IOS
6262
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
6363
{
64-
#if !TARGET_OS_VISION
6564
UIInterfaceOrientationMask appSupportedOrientationsMask =
6665
[RCTSharedApplication() supportedInterfaceOrientationsForWindow:RCTKeyWindow()];
6766
if (!(_supportedInterfaceOrientations & appSupportedOrientationsMask)) {
@@ -75,9 +74,6 @@ - (UIInterfaceOrientationMask)supportedInterfaceOrientations
7574
}
7675

7776
return _supportedInterfaceOrientations;
78-
#else
79-
return UIInterfaceOrientationUnknown;
80-
#endif
8177
}
8278
#endif // RCT_DEV
8379

packages/react-native/React/Views/RCTModalHostViewController.m

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ - (BOOL)prefersStatusBarHidden
5454
#if RCT_DEV && TARGET_OS_IOS
5555
- (UIInterfaceOrientationMask)supportedInterfaceOrientations
5656
{
57-
#if !TARGET_OS_VISION
5857
UIInterfaceOrientationMask appSupportedOrientationsMask =
5958
[RCTSharedApplication() supportedInterfaceOrientationsForWindow:RCTKeyWindow()];
6059
if (!(_supportedInterfaceOrientations & appSupportedOrientationsMask)) {
@@ -68,9 +67,6 @@ - (UIInterfaceOrientationMask)supportedInterfaceOrientations
6867
}
6968

7069
return _supportedInterfaceOrientations;
71-
#else
72-
return UIInterfaceOrientationUnknown;
73-
#endif
7470
}
7571
#endif // RCT_DEV
7672

packages/react-native/scripts/react_native_pods.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,8 @@ def use_react_native! (
165165
pod 'glog', :podspec => "#{prefix}/third-party-podspecs/glog.podspec"
166166
pod 'boost', :podspec => "#{prefix}/third-party-podspecs/boost.podspec"
167167
pod 'fast_float', :podspec => "#{prefix}/third-party-podspecs/fast_float.podspec"
168-
pod 'fmt', :podspec => "#{prefix}/third-party-podspecs/fmt.podspec"
169-
pod 'RCT-Folly', :podspec => "#{prefix}/third-party-podspecs/RCT-Folly.podspec", :modular_headers => true
170168
pod 'fmt', :podspec => "#{prefix}/third-party-podspecs/fmt.podspec", :modular_headers => true
169+
pod 'RCT-Folly', :podspec => "#{prefix}/third-party-podspecs/RCT-Folly.podspec", :modular_headers => true
171170

172171
folly_config = get_folly_config()
173172
run_codegen!(

packages/react-native/sdks/hermes-engine/hermes-engine.podspec

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ rescue => e
1818
react_native_path = File.join(__dir__, "..", "..")
1919
end
2020

21-
puts "React Native path: #{react_native_path}"
22-
2321
# package.json
2422
package = JSON.parse(File.read(File.join(react_native_path, "package.json")))
2523
version = package['version']

packages/react-native/types/tsconfig.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
"jsx": "react",
1111
"noEmit": true,
1212
"forceConsistentCasingInFileNames": true,
13-
"paths": {
14-
"react-native": ["."],
15-
"react-native/*": ["../*"]
16-
}
13+
"paths": {"react-native": ["."], "react-native/*": ["../*"]}
1714
}
1815
}

packages/rn-tester/Podfile.lock

Lines changed: 75 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ PODS:
366366
- React-utils
367367
- SocketRocket (= 0.7.1)
368368
- Yoga
369-
- React-Core/RCTWindowManagerHeaders (1000.0.0):
369+
- React-Core/RCTWindowManagerHeaders (0.77.0-main):
370370
- glog
371371
- hermes-engine
372372
- RCT-Folly (= 2024.01.01.00)
@@ -383,7 +383,7 @@ PODS:
383383
- React-utils
384384
- SocketRocket (= 0.7.1)
385385
- Yoga
386-
- React-Core/RCTXRHeaders (1000.0.0):
386+
- React-Core/RCTXRHeaders (0.77.0-main):
387387
- glog
388388
- hermes-engine
389389
- RCT-Folly (= 2024.01.01.00)
@@ -1987,81 +1987,81 @@ SPEC CHECKSUMS:
19871987
Yoga: f883b669a85bf8cf22c157489d5a4c1799939a85
19881988

19891989
SPEC CHECKSUMS:
1990-
boost: 860c623744dab87c609a055f83f83f42b5ebcc72
1991-
DoubleConversion: 55b1a13a4ac0adb3284bef5f3f0c96754f6f0ae8
1992-
FBLazyVector: 75917a8d89cfe57b7f98cd4ab36cb526f1174cd7
1993-
fmt: 030bf7157445bf1aea48da271f274f4414e75349
1994-
glog: a40a7f15eed93736148eb4c5bb7ed8a4a460f748
1995-
hermes-engine: 6122c86dee17ba201cb2319a3f482ce0b1e1a7ae
1996-
MyNativeView: 4aaf4bcf87cc036f198a87515b761bedc3485559
1997-
NativeCxxModuleExample: 6205ec76b01387bae46348010610ee14e4263038
1990+
boost: 0ac7fe9a9f61c6f246ffefca62b8cf6881bb6a38
1991+
DoubleConversion: f7fa6cd0e0828f5833892ea28ae96a3acdeff239
1992+
FBLazyVector: 9b50889b4273f520fae2ed2ebe880064e69c8b44
1993+
fmt: 674b64b86904477182dae486599deae56eeb68cb
1994+
glog: 438fa7943ec8a863e4ab0ee055e672692a18032e
1995+
hermes-engine: 775af0e51d28a1eb6f0f0fae4c9e3e5faaeec881
1996+
MyNativeView: f677179d1d15d5fd70a5e0e731d4e255145a6d90
1997+
NativeCxxModuleExample: 183990f7d80a2f7c611bdbc259d53d2ac67e5a04
19981998
OCMock: 267d92c078398b7ce11d99e811e3a402744c06bc
1999-
OSSLibraryExample: 2142d01ef5f40e317ad354d2801552774682c7f1
2000-
RCT-Folly: d23913eeafd2fd092ae5067925f4b778c33dadf9
2001-
RCTDeprecation: 3808e36294137f9ee5668f4df2e73dc079cd1dcf
2002-
RCTRequired: 8919b4dc424a86aba972804530a06910b74d15a5
2003-
RCTTypeSafety: 3f1a45e4577f09e87afa7a96aa626f39303eda82
2004-
React: e4ed2cd942dd3e28e922468afaf73868de21ea27
2005-
React-callinvoker: d6a336a05b014e411ea16c6cddaa6d59e1a5b0bc
2006-
React-Core: 492bd6177faf25b49f26318a315aa0ac1ba38d96
2007-
React-CoreModules: c85b9b284f3382f0c800ee9e0bb39ca2de770e8d
2008-
React-cxxreact: 8de3c541a2252614df9ef5f6f10da47de049f894
2009-
React-debug: 6f947fa4a7419c21c162c9803c6f3f24d6b7e68c
2010-
React-defaultsnativemodule: 10b757a10362c6eacbe5ad38a5e98504fc5e4798
2011-
React-domnativemodule: a9d107632f08c9c0792c1d8c9e8608729b3e600d
2012-
React-Fabric: f9dab36edff6834e99750add3a59058353687c79
2013-
React-FabricComponents: 6692268833fdb0ec9e435611bf8ea1e7faacc0e1
2014-
React-FabricImage: 6417f376e21ad0f58894e628867163b5a3327f69
2015-
React-featureflags: 7ec38e7f4b81a870e7c4912c4eb02a726384db6d
2016-
React-featureflagsnativemodule: f6a3befd63d4e27bee813e9321643dbed6800543
2017-
React-graphics: eba6d6369336f25baba841534d919f8d52ea8be6
2018-
React-hermes: 336332b5fc7625c90d27820371d5d20f2ab8dd5b
2019-
React-idlecallbacksnativemodule: 16b079c2f21c7f8ba0b4c242a46bf00d06a9d7c6
2020-
React-ImageManager: 05a3c1a062d90df2181458c0d0665a8ffa084244
2021-
React-jserrorhandler: 88322945d8c68834e22511963c4ddc644ca7535d
2022-
React-jsi: b0b8226b325d9a5d4ee792b097da4061f3a5e3f7
2023-
React-jsiexecutor: 166248bb49a62884118be80414f0a8958ae577a3
2024-
React-jsinspector: 4aad8ab68d7da02ee74902575b9f0a68bfc42189
2025-
React-jsitracing: b632400ca03d0554d482ffc254b4a4e1ab6024a7
2026-
React-logger: 35584107dc831ae3bc23064c63161c0a079f959b
2027-
React-Mapbuffer: 8faa20ad9065b2d09c321c2387257780d3041863
2028-
React-microtasksnativemodule: 9ba80052db25065c66234b326de431912df19545
2029-
React-nativeconfig: be3975ef2d52d63ac255ecbf1861f9ef7b60b439
2030-
React-NativeModulesApple: e6a958f9925095363c22f4343337bf8f0227ca49
2031-
React-perflogger: 3e6acd6b92b0ea8ccd5a0872edfe70ebdecfe6bd
2032-
React-performancetimeline: 369a6ed47a5f951586d7b4dd741382ec8307080f
2033-
React-RCTActionSheet: 6df066b08fa19696b19e8a0b500c24f09a8238d5
2034-
React-RCTAnimation: 2a52d8345af047b8fe2ce8fe9c7ef1b12876081a
2035-
React-RCTAppDelegate: 0181d89af0fb8aca50b41749a2952d102d31dc8d
2036-
React-RCTBlob: b70a36038f80af467052b7b0966d9d3403d538a4
2037-
React-RCTFabric: c07a979acbda5fee3da9a67689cc549830a2cf07
2038-
React-RCTImage: 9b63b595bf2aa575383fb978ce3ade3cedb95ba7
2039-
React-RCTLinking: 442be15b86fd627fc9eff11b82996608072e93f5
2040-
React-RCTNetwork: ced688e676899e4e1cde14d070db16721855867c
2041-
React-RCTPushNotification: 547e8526b4878bb0dc1cc73a3631ee9222d301a4
2042-
React-RCTSettings: ef1b0340fbcbcbd83cb787c6c64f8ec87f93fd02
2043-
React-RCTSwiftExtensions: 5b6189006b9e5526390b1f88168b5e9ac5b5f8ec
2044-
React-RCTTest: fe0371b6bb5703e5dbdc145d704f3db0dd99a6c6
2045-
React-RCTText: f8ef84e0c01ff4a463d8984e13f02d8cb3489e67
2046-
React-RCTVibration: ce3dfe8bcb777d8e694a8b643a72b78fb4e9a035
2047-
React-RCTWindowManager: a53b985b4a923e13c1ab7546e87db04bb1956300
2048-
React-RCTXR: f79f86a916325b346aa879e417ebcf27b95d93c5
2049-
React-rendererconsistency: 0ca5004cb82d0a5550955dd3593cd2ebeda25457
2050-
React-rendererdebug: b91a3027ff07c58c3306e029c1da7b3b3c0abd97
2051-
React-rncore: 70e0b76634f90404805cd159595ce74900bdc80d
2052-
React-RuntimeApple: aabc75825a6e486d3d9523ee93fe9d83e14b13c6
2053-
React-RuntimeCore: 4d6127a02c8200bfb49923733c2ec2240106d46d
2054-
React-runtimeexecutor: 90cca54336482cf43d7c2b3c80af3f4cef1d1e0e
2055-
React-RuntimeHermes: 3c5d14d1acdc9d17d62a048f11d9af115e0ac263
2056-
React-runtimescheduler: c42bd8cc26171a3534a98d6fb19aec4761b2854f
2057-
React-timing: 211dd30779c09ed8a2ba9fd7a1343ad37a9c9e82
2058-
React-utils: 76d8c01d580264f17d9f039da69afac43b774e36
2059-
ReactCodegen: e0b48721f27c77ea8bf1b26038bee317efc219fc
2060-
ReactCommon: 245600a1b02f0987c92d108b9d727f128faa08fb
2061-
ReactCommon-Samples: b4ddc137d57d049c827f7a356b8df1bf39dd227b
2062-
ScreenshotManager: 4bd1cc50a26fe3225c48add3fd254f8e9cba38ca
1999+
OSSLibraryExample: 88dec58bce24674206d8a2787c7569792b0d1e09
2000+
RCT-Folly: 9d7c63d5cd4256a6df3e158b60ed0db4e3d5a70a
2001+
RCTDeprecation: 66e972d6c7d69301a8b6400676f93b48fcacbd71
2002+
RCTRequired: 2938162d9e7bdc92ecbc11551eab8288c4b2bb1a
2003+
RCTTypeSafety: 58fd712a02c25b1f097813f76fa47abccc6d9fae
2004+
React: de0d7eaeca9d94e7676b3a3447990a5c8757c416
2005+
React-callinvoker: 62a1a0495f5853bc2d14cdee4920dd542b7d192d
2006+
React-Core: 6cfc75403060605f0aadce1c172280136c9647e0
2007+
React-CoreModules: 7a3b172a320dacf31f7a1c7f15752a232b9eb083
2008+
React-cxxreact: 95f9b94c93c0173ddb7928bd6ba59e38f5af09c5
2009+
React-debug: 79b03bd3509641aa949261c7fc948fbab2ebb7bc
2010+
React-defaultsnativemodule: a2f7e9d43308e6e698f19991a31beea06b85d6b8
2011+
React-domnativemodule: 4ffa5efcb4ce97556b8bbc61c9a00547b7025f31
2012+
React-Fabric: 41c1a3a418966524242dacc35d33c829117b1902
2013+
React-FabricComponents: ddbb03dc4da65eacd7f573c71e193c7938859ce7
2014+
React-FabricImage: 95dc041ccdc4cdcfc301f8f1bcc47926c5868aad
2015+
React-featureflags: 1059165a17f14710c0f2551da701775d7226a4a0
2016+
React-featureflagsnativemodule: 6725d332aa84e888205a4132b3d8a4663f6c9b6b
2017+
React-graphics: ac0b00a1d589910728534a4466817c8e2c5e7389
2018+
React-hermes: c7b6a943ed1b946b1ac4fff37ae8a7cda01f5e72
2019+
React-idlecallbacksnativemodule: fa38da39da97000a165a6b04868fab55d3e0fdcf
2020+
React-ImageManager: 465d008db1b2bf1355ba2d04fc68b80df033ad0a
2021+
React-jserrorhandler: 2ee3d4485d954d3b8b4e57811373d625f6043657
2022+
React-jsi: 0bf2f09e9b524c755ddd019130a2dd1c8c734f08
2023+
React-jsiexecutor: d9c2d8e866a02b282c9d1cc001a83a77fe764741
2024+
React-jsinspector: 68dad0b81cc01009a51b893b19b9a35196a40205
2025+
React-jsitracing: a22278858e1f933968cdcd1a9dee2f637337814b
2026+
React-logger: 1d6f52353aa1905adb637d1b9dacd0f0d32f7dba
2027+
React-Mapbuffer: 63faf8a468b232fb80dda453780c1336648dc623
2028+
React-microtasksnativemodule: 860373377813c537806e3db3e1e5867b6a600a36
2029+
React-nativeconfig: 34356ecc618e138f765ea5b9567926cdef172c4a
2030+
React-NativeModulesApple: e3a48ae879b2d2d77edc94696abbb7b5edee32e1
2031+
React-perflogger: 136af915fc6d8cb2dc41525f088270763fc41062
2032+
React-performancetimeline: 5500973c0c4ff4eb2a4734791929c1f14626b4e9
2033+
React-RCTActionSheet: d9452aab84282469cbf03c0e77989832305bc083
2034+
React-RCTAnimation: 47e5f86af142310582ca0600c13e1111b85f2790
2035+
React-RCTAppDelegate: 2c55842aae1c8e49d82c69661405b4f722ddd895
2036+
React-RCTBlob: b9758840bf11a596e6adfabc307b517b82ef4eb7
2037+
React-RCTFabric: 8409df839609882ba681df36d5656613b17f44dd
2038+
React-RCTImage: 33c65d07d48f074263f23882abb799ba1901b897
2039+
React-RCTLinking: 0af6f02ef51de54f794b98262d5d06918a9ced02
2040+
React-RCTNetwork: 02b0e193244fe7d6f25f557ddaf92634377c7e43
2041+
React-RCTPushNotification: 2f64b745aa7539bf23b73597d11c35ce05c1ea35
2042+
React-RCTSettings: 47385309dd40ec1f71c9c533338cfa9cc3bcdc1f
2043+
React-RCTSwiftExtensions: 823573c791982558f894d588b5587396a57df182
2044+
React-RCTTest: 18ce1d59c61e01036dbdd50f4848f9639c4ce3c1
2045+
React-RCTText: f56fec58cf42b5437470d42976452564295b6b91
2046+
React-RCTVibration: d4ecbbb48adecc37bbf43839c29baedd0520df60
2047+
React-RCTWindowManager: 29988b402b1ab5be7e291cb69e315620aa7116b9
2048+
React-RCTXR: 50463d549a7188f1d4f05752902e2b6c6d84523e
2049+
React-rendererconsistency: 822e990cad99ce4b8ab4ecccf7105618804dbbae
2050+
React-rendererdebug: 316b2437167d52151ae6d597d31fe30e149e87da
2051+
React-rncore: b1b575f33e980d5c0ab41c7bd79d00bb0a01ee47
2052+
React-RuntimeApple: d33d20a2139a65d920eed13f0748b1258cc05aac
2053+
React-RuntimeCore: 61311ee52a2f95d5794f7e1972db3df22416e7a0
2054+
React-runtimeexecutor: 46b1b00d4ee088a4656c7ef9e1b0e496318a1a6a
2055+
React-RuntimeHermes: 870a5e47ff71f445e44bf7c76e726b00da7ac5d3
2056+
React-runtimescheduler: e96c424ed832bdfa0660ff2a1bba247b7333e840
2057+
React-timing: b28b9743e3b2e8efbd2e3b4c12d97d52a3c0d218
2058+
React-utils: b0215ef4eb60b818f9fec7eb6c979ad286aab41a
2059+
ReactCodegen: c044e396d3e5e127a40d785a0b600448c0f9929d
2060+
ReactCommon: e03c4081dc50b26046f8f96cf715ad80826f8995
2061+
ReactCommon-Samples: 6401099d4afc986191f1832f3eba4a9371bde693
2062+
ScreenshotManager: d8e23a8d56a8dc6027d4d79198d971531b01f58e
20632063
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
2064-
Yoga: 961e7e2a9fad70b36e221e75b3e45637a33cbdca
2064+
Yoga: a2d99fac85cc4f01f06951ef6e9a13dc97df4b8b
20652065

20662066
PODFILE CHECKSUM: ecf8d73b0aefca76e0e218d8845b105ea9282718
20672067

0 commit comments

Comments
 (0)