I am Unable to run any bare react-native project on my AVD as well as on real Android device through USB Debugging. [1]:https://imgur.com/W96YK74 [2]: https://i.stack.imgur.com/988QX.png
These are images of error I received.
Take a look on your android/build.gradle and run the proper variant like this:
react-native run-android --variant [productFlavorName][debug or release]
Example:
productFlavors { devRunner { dimension 'remote' } prodRunner { dimension 'remote' } }
react-native run-android --variant devRunnerDebug