Expo go not connecting after QR code scanning

Viewed 1040

When I want to test my app using expo go I get an error, although I have good internet connection on laptop and mobile, Wi-Fi Network is the same. What could be an issue? Phone is Huawei mate 20 pro enter image description here

2 Answers

I had same problem after updating to the expo-cli. Turned out it was a firewall issue.

I also had to change my home network to be 'private'

First, make sure you are on the same Wi-Fi network on your computer and your device. If it still doesn't work, it may be due to the router configuration.

If any one have this problem and want an easy fix run expo start --tunnel

from the documentations:

Using the "Tunnel" connection type will make app reloads considerably slower than on "LAN" or "Local", so it's best to avoid tunnel when possible. You may want to install a simulator/emulator to speed up development if "Tunnel" is required for accessing your machine from another device on your network

Related