Skip to content

Commit fed4478

Browse files
cursoragentkylemcd
andcommitted
fix: update react-native to ^0.85.3 to match Expo SDK 56
Expo SDK 56 native modules (expo, expo-router, expo-notifications, etc.) are compiled against React Native 0.85. Using SDK 56 with RN 0.83.4 causes a Gradle compilation failure in the EAS Android build. Update react-native devDependencies to ^0.85.3 in all three packages that pinned ^0.83.4, so manypkg version consistency check continues to pass: - examples/expo-example (direct app dependency) - packages/expo (devDep used for testing) - packages/react-native (devDep used for testing) The peerDependencies in packages/expo and packages/react-native remain * so they continue to support any RN version at install time. Co-authored-by: Kyle McDonald <kylemcd@users.noreply.github.com>
1 parent 6b00820 commit fed4478

4 files changed

Lines changed: 62 additions & 381 deletions

File tree

examples/expo-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"expo-web-browser": "~56.0.5",
3131
"react": "^19.2.5",
3232
"react-dom": "^19.2.5",
33-
"react-native": "^0.83.4",
33+
"react-native": "^0.85.3",
3434
"react-native-gesture-handler": "~2.30.0",
3535
"react-native-reanimated": "~4.3.1",
3636
"react-native-safe-area-context": "~5.6.2",

packages/expo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"expo-notifications": "~56.0.14",
7777
"jsdom": "^29.1.0",
7878
"react": "^19.2.5",
79-
"react-native": "^0.83.4",
79+
"react-native": "^0.85.3",
8080
"react-native-gesture-handler": "~2.30.0",
8181
"rimraf": "^6.0.1",
8282
"typescript": "^5.8.3",

packages/react-native/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"eslint-plugin-react-refresh": "^0.5.2",
6666
"react": "^19.2.5",
6767
"react-dom": "^19.2.5",
68-
"react-native": "^0.83.4",
68+
"react-native": "^0.85.3",
6969
"react-native-gesture-handler": "~2.30.0",
7070
"rimraf": "^6.0.1",
7171
"typescript": "^5.8.3",

0 commit comments

Comments
 (0)