This is my first react project. I created the project using npx react-native init Projectname
. The project created successfully and everything seems ok until when I tried to run the with react-native
run-android
, It gives the following error:
info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag.
Jetifier found 967 file(s) to forward-jetify. Using 4 workers...
info JS server already running.
'adb' is not recognized as an internal or external command,
operable program or batch file.
info Launching emulator...
error Failed to launch emulator. Reason: No emulators found as an output of `emulator -list-avds`.
warn Please launch an emulator manually or connect a device. Otherwise app may fail to launch.
info Installing the app...
FAILURE: Build failed with an exception.
What went wrong: Could not initialize
class org.codehaus.groovy.runtime.InvokerHelper
Try: Run with
--stacktrace
option to get the stack trace. Run with--info
or--debug
option to get more log output. Run with--scan
to get full insights.Get more help at https://help.gradle.org
BUILD FAILED in 2s:
error Failed to install the app. Make sure you have the Android development environment set up: https://reactnative.dev/docs/environment-setup. Run CLI with --verbose flag for more details.
Error: Command failed: gradlew.bat app:installDebug -PreactNativeDevServerPort=8081
My android device is connected with a USB but then also it says that the android device is not connected. I also did react-native start
in another cmd window and run react-native run-android
in another window but it didn't work.