Skip to content

Commit be3cb09

Browse files
committed
Bump RN to rn.4, fix iOS paper build issue
1 parent cdaa0e3 commit be3cb09

13 files changed

Lines changed: 700 additions & 695 deletions

File tree

apps/common-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"patch-package": "^8.0.0",
4848
"prettier": "^3.3.3",
4949
"react": "19.0.0",
50-
"react-native": "0.79.0-rc.3",
50+
"react-native": "0.79.0-rc.4",
5151
"react-native-gesture-handler": "2.24.0",
5252
"react-native-pager-view": "patch:react-native-pager-view@npm%3A6.6.1#~/.yarn/patches/react-native-pager-view-npm-6.6.1-dda1167cca.patch",
5353
"react-native-reanimated": "workspace:*",

apps/common-app/src/examples/PinExample.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function Digit({ number, index }: DigitProps) {
7070
useDerivedValue(() => {
7171
if (Platform.OS === 'web') {
7272
if (aref && aref.current) {
73-
aref.current.getNode().scrollTo({ y: digit.value * 200 });
73+
aref.current.getScrollableNode().scrollTo({ y: digit.value * 200 });
7474
}
7575
} else {
7676
// TODO fix this

apps/fabric-example/ios/FabricExample/AppDelegate.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
3434
}
3535

3636
class ReactNativeDelegate: RCTDefaultReactNativeFactoryDelegate {
37+
override func sourceURL(for bridge: RCTBridge) -> URL? {
38+
self.bundleURL()
39+
}
40+
3741
override func bundleURL() -> URL? {
3842
#if DEBUG
3943
RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")

0 commit comments

Comments
 (0)