Releases: expo/xde
v1.3.1
XDE 1.3.0 for Exponent 1.3
This version of XDE is for the version of Exponent released January 13, 2016.
v1.2.0 for Exponent 1.2.0
This release of XDE is for Exponent 1.2.0 (Android and iOS).
Exponent Android: https://play.google.com/store/apps/details?id=host.exp.exponent
Exponent iOS: https://itunes.apple.com/us/app/exponent/id982107779?mt=8
Upgrade notes
Method 1
To upgrade an existing Exponent project, the most reliable approach is to create a new project and copy over your project's JS. This ensures that your new project has the correct version of React Native that works with the latest version of Exponent.
Method 2
Another way to upgrade is to edit your project's package.json file. Find the line under dependencies
that says:
"react-native": "exponentjs/react-native#2015-10-08-xde"
and change it to:
"react-native": "exponentjs/react-native#2015-11-13"
Then delete your node_modules
directory and run npm install
(we recommend npm 2).
File watcher
We recommend you install watchman
, which improves the file-watching behavior of the JS packager. The best way to install watchman
is with Homebrew (http://brew.sh/). Install Homebrew and run:
brew install watchman
To keep watchman
up-to-date on your computer, periodically run:
brew update
brew upgrade watchman
Automatic updates!
This release of XDE includes support for automatic updates! It's still a bit experimental since this is the first time we're trying them, but it should help let you know when to upgrade XDE.
When there is an update, XDE will download it and ask if you want to restart XDE. When you click OK, XDE will exit and the update will be applied -- this takes 30 seconds to a minute so hang tight! -- and then will automatically relaunch the new version of XDE when it's done.