79607995

Date: 2025-05-06 05:04:31
Score: 1.5
Natty:
Report link

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.

Possible Solution

  1. Find IPv4 address of local WiFi network.
ipconfig

(or ifconfig on Mac/Linux)

For example let's say it's: 192.168.1.119

  1. Start your development server with:
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.

  1. Now Expo should be displaying that IP address, scanning the QR code should result in your app loading.

Alternate

  1. Again find IP address of local network.
  2. Manually go to in Safari: 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.

Explanation

Expo's CLI is dislaying the IPv4 address of Virtual Box: virtualbox Expo output: expo

Instead of Wifi: ipconfig

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

Reasons:
  • Whitelisted phrase (-1): Hope this helps
  • Long answer (-1):
  • Has code block (-0.5):
  • Me too answer (2.5): having similar issue
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: KakkoiCurry