This repository has been archived by the owner on Sep 25, 2018. It is now read-only.
v1.6.0
Support for Exponent 1.4.0 on iOS and Android. The "new project" template included with this version of XDE uses a version of React Native that is similar to 0.24. For projects made for Exponent, we're calling this SDK 5.0.0.
Upgrading existing projects:
In your package.json file, set the sdkVersion
and react-native
dependency version to look like this:
{
"exp": {
"sdkVersion": "5.0.0"
},
"dependencies": {
"react": "^0.14.5",
"react-native": "exponentjs/react-native#sdk-5.0.0",
...
}
}
Then remove your node_modules
directory and run npm install
again.