Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Expo : React Native, 'Error starting tunnel: Error: Starting tunnels timed out'

I am connected to the same network my device and PC , how can we fix this error ,

After restarting it gives the same error with :

Switched to a LAN URL because the tunnel appears to be down. Only devices in the same network can access the app. You can restart the project to try reconnecting.

on my device it says

Tunnel packager ....exp.not found

I am running on windows btw; Thanks

like image 402
Naveen DINUSHKA Avatar asked Aug 31 '25 03:08

Naveen DINUSHKA


1 Answers

Expo and react-devtools do not go together. So if you are using react-devtools, you must uninstall it. This worked for me:

npm uninstall react-devtools -g

But I noticed some other people were successful with this here.

npm uninstall react-devtools --save-dev

like image 192
Behnam Kamrani Avatar answered Sep 02 '25 15:09

Behnam Kamrani