Reputation: 1291
I'm working on React Native on Windows and I have a problem on my device (Android 4.1.2). I am following the tutorial but, i have a problem when i run on my device then it shows red screen with error message "Unable to download JS bundle"
My question is about the second part : when i Configure device to connect to the dev server via Wi-Fi. When I go to "developer options", to write my machine's IP address then app is crash
How can I try to resolve this error ?
Upvotes: 0
Views: 390
Reputation: 919
react-native start > /dev/null 2>&1 &
adb shell input keyevent 82
from the command line.Upvotes: 1