Skip to content

Instantly share code, notes, and snippets.

@julioxavierr
Last active July 23, 2019 01:46
Show Gist options
  • Save julioxavierr/ddb3476d59efb6733ed164195fe8e6c4 to your computer and use it in GitHub Desktop.
Save julioxavierr/ddb3476d59efb6733ed164195fe8e6c4 to your computer and use it in GitHub Desktop.
Steps to update 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 :)
@tcodes0
Copy link

tcodes0 commented Jul 23, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment