From 61b95f6c0867272b94ec890fa509fde7b8e4dc3c Mon Sep 17 00:00:00 2001 From: Thomas Hodges Date: Sat, 1 Feb 2020 09:57:50 -0800 Subject: [PATCH] Update package.json this fixes the error: 'SDK 32.0.0 is not valid SDK Version'. You might want to apply it to other packages as well. --- chapter-2/fake-music-player/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chapter-2/fake-music-player/package.json b/chapter-2/fake-music-player/package.json index ff0b0ffb..b9732355 100644 --- a/chapter-2/fake-music-player/package.json +++ b/chapter-2/fake-music-player/package.json @@ -2,8 +2,8 @@ "main": "node_modules/expo/AppEntry.js", "private": true, "dependencies": { - "react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz", - "expo": "^32.0.0", - "react": "16.5.0" + "react-native": "https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz", + "expo": "~36.0.0", + "react": "~16.9.0" } }