Reputation: 3966
Why is Live Reload, Hot Reload, and Remote Debugger all unavailable? I've tried
Prior to this, everything was working fine. I'm relatively new to the React Native development environment. Is there a place to look (a command or a log file or something) that may have more information figure out what the issue is?
For reference, my app was created using the create-react-native-app
command.
Upvotes: 2
Views: 2152
Reputation: 572
You don't need to change .expo/settings.json
manually.
In the Expo DevTools
window, which is normally running at http://localhost:19002
, just toggle production mode
off.
Upvotes: 1
Reputation: 5168
In order to solve this issue, go to .expo/settings.json
and change dev
to true:
Credits: https://github.com/expo/expo/issues/1210#issuecomment-402347285
Upvotes: 1
Reputation: 3966
I solved my own problem. For some reason the .expo/settings.json
had dev: true
even though this wasn't reflecting anywhere in the UI. Diffing file trees of the current project with older versions solved my problem.
4c4
< "dev": false,
---
> "dev": true,
Upvotes: 4