This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.
Native project upgrade helper
Edit page
View file-by-file diffs of all the changes you need to make to your native projects to upgrade them to the next Expo SDK version.
If you manage your native projects (android and ios directories), to upgrade to the latest Expo SDK, you have to make changes to your native projects. It can be a complex process to find which native file changes and what to update in which file.
The following guide provides diffs to compare native project files between your project's current SDK version and the target SDK version you want to upgrade. You can use them to make changes to your project depending on the expo package version your project uses. The tools on this page are similar to React Native Upgrade Helper. However, they are oriented around projects that use Expo modules and related tooling.
Interested in avoiding upgrading native code altogether? See Continuous Native Generation (CNG) to learn how Expo Prebuild can generate your native projects before a build.
Upgrade native project files
Once you have upgraded your Expo SDK version and related dependencies, use the diff tool below to learn about changes you need to make to your native project and bring them up to date with the current Expo SDK version.
Choose your from SDK version and to SDK version to see the generated diff. Then, apply those changes to your native projects by copying and pasting or manually making changes to the project files.
From SDK version:
To SDK version:
Native code changes from SDK 56 to 57
Upgrading with an AI agent?
Copy a ready-to-run prompt with the full diff and apply instructions, then paste it into your AI assistant to update your native projects configuration.
| 2 | 2 | "name": "expo-template-bare-minimum", |
| 3 | 3 | "description": "This bare project template includes a minimal setup for using unimodules with React Native.", |
| 4 | 4 | "license": "0BSD", |
| 5 | "version": "56.0.26", | |
| 5 | "version": "57.0.3", | |
| 6 | 6 | "main": "index.js", |
| 7 | 7 | "scripts": { |
| 8 | 8 | "start": "expo start --dev-client", |
| 11 | 11 | "web": "expo start --web" |
| 12 | 12 | }, |
| 13 | 13 | "dependencies": { |
| 14 | "expo": "~56.0.12", | |
| 15 | "expo-status-bar": "~56.0.4", | |
| 14 | "expo": "~57.0.1", | |
| 15 | "expo-status-bar": "~57.0.0", | |
| 16 | 16 | "react": "19.2.3", |
| 17 | "react-native": "0.85.3" | |
| 17 | "react-native": "0.86.0" | |
| 18 | 18 | }, |
| 19 | 19 | "publishConfig": { |
| 20 | 20 | "executableFiles": [ |
| 21 | 21 |