Using React Native 0.43. Build a connected Android device as follows:
react-native init AwesomeProject
react-native run-android
The process creates and runs AwesomeApp on the device, but lands on the resolution screen with the title
"Applications that other applications can draw"
and the "Allow other applications transfer" switch is set to active.
Pressing the "Back" button returns to the main screen of the application with a blank white screen.
I read that I may need to update the ip address, but the shake gesture does not pull up the dev menu.
In my Android monitor in Android Studio, I see the following log:
W / unkown: Responsive Overlay permissions must be granted in order to respond to native dev applications.
I have a hard time to fix it. Is it still an overlay permissions issue? How can I open the dev menu to check the ip address? Anything else I can do wrong?
Update: this happens on the device (Pixel) running Android 7.1.2. Everything works fine on S7 running Android 6.0.1
source
share