Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndreiCalazans/e061d26f342b02c26ff5edbaf0c13005 to your computer and use it in GitHub Desktop.
Save AndreiCalazans/e061d26f342b02c26ff5edbaf0c13005 to your computer and use it in GitHub Desktop.
Steps to upgrade a React Native App

React Native Upgrade path

  • Change React and React Native version on package.json
  • run yarn install to upgrade dependencies
  • run yarn outdated or yarn upgrade-interactive libraries that are outdated (make sure that there's no breaking changes, check release notes (one by one))
  • check the diff or use the upgrade-helper and update the native code
  • open Xcode and link the binaries
  • run on iOS
  • test iOS
  • run on Android
  • test Android
  • be happy :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment