Got this issue when starting up my react native app
Turns out there’s a connection issue between WSL to the Virtual Android Device on my PC
How to fix it?
Add –tunnel parameter when running the expo start command
npx expo start --tunnel
Got this issue when starting up my react native app
Turns out there’s a connection issue between WSL to the Virtual Android Device on my PC
How to fix it?
Add –tunnel parameter when running the expo start command
npx expo start --tunnel
Why? I’m more comfortable with Linux tools and commands, and I found this snippet from Github here, kudos to jasonm23 on Github Command : cd ~/ sudo su apt update apt install -y unzip wget unzip sdk-tools-linux-4333796.zip -d Android rm sdk-tools-linux-4333796.zip apt install -y lib32z1 openjdk-8-jdk export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 export PATH=$PATH:$JAVA_HOME/bin printf...