Do you have VirtualBox or alike on your computer? Been having similar issue since Expo 53 update. Here's what seems to be working for now.
ipconfig
(or ifconfig
on Mac/Linux)
For example let's say it's: 192.168.1.119
REACT_NATIVE_PACKAGER_HOSTNAME=192.168.1.119 npx expo start
Command may very in different shells but you want to set the enviorment variable to what you local network is.
exp://192.168.1.119:8081
(replace with your actual address). It should prompt you to open Expo. From what it seems like Expo still properly serves on the Wifi, just shows the wrong IP address.Expo's CLI is dislaying the IPv4 address of Virtual Box:
Expo output:
That said, from experience it's still properly serving on Wifi network. It's just that the CLI is displaying the wrong IP address.
I think this a bug on Expo's end? Left a comment at the GH issue, hopefully they re-open the issue.
Hope this helps