From 043648e4252f9daaff760f86337544c5cf9a3bd3 Mon Sep 17 00:00:00 2001 From: Cheryl Jerozal Date: Thu, 5 Apr 2018 15:03:43 -0700 Subject: [PATCH] Update expo version from 14 to 25 --- .babelrc | 2 +- .gitignore | 2 +- exp.json | 3 +-- package.json | 8 ++++---- src/main.js | 2 +- 5 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.babelrc b/.babelrc index 1ced9e3..353e3a1 100644 --- a/.babelrc +++ b/.babelrc @@ -1,6 +1,6 @@ { "presets": [ - "react-native-stage-0/decorator-support" + "react-native" ], "env": { "development": { diff --git a/.gitignore b/.gitignore index 353502f..7ba845e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ node_modules/**/* .DS_Store -.exponent +.expo diff --git a/exp.json b/exp.json index 606cafb..e95c50d 100644 --- a/exp.json +++ b/exp.json @@ -2,14 +2,13 @@ "name": "Pomodoro", "description": "A pomodro timer, super fun, you can time things and pause and stop and count tomatoes.", "slug": "pomodoro", - "sdkVersion": "14.0.0", + "sdkVersion": "25.0.0", "version": "1.0.0", "orientation": "portrait", "primaryColor": "#cccccc", "privacy": "public", "icon": "./icon.png", "notification": { - "iconUrl": "https://s3.amazonaws.com/exp-us-standard/placeholder-push-icon-blue-circle.png", "color": "#000000" }, "loading": { diff --git a/package.json b/package.json index 4a521be..08dc8a2 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,10 @@ "main": "src/main.js", "author": "brentvatne@gmail.com", "dependencies": { - "@exponent/vector-icons": "~4.0.0", - "exponent": "14.0.0", - "react": "~15.4.0", - "react-native": "github:exponentjs/react-native#sdk-14.0.0", + "@expo/vector-icons": "~4.0.0", + "expo": "^25.0.0", + "react": "16.2.0", + "react-native": "https://github.com/expo/react-native/archive/sdk-25.0.0.tar.gz", "react-native-drawer-layout": "^1.1.0" } } diff --git a/src/main.js b/src/main.js index ce59404..775c66e 100644 --- a/src/main.js +++ b/src/main.js @@ -10,7 +10,7 @@ import { TouchableWithoutFeedback, View, } from 'react-native'; -import Exponent, { Constants, Permissions, Notifications } from 'exponent'; +import Exponent, { Constants, Permissions, Notifications } from 'expo'; import DrawerLayout from 'react-native-drawer-layout';