Skip to content Skip to sidebar Skip to footer

Android Studio Emulator: Process Finished With Exit Code -1073740791 (0xc0000409)

I am trying to create a React Native app on Android emulator. However, I keep getting the error message below when trying to start up the emulator. It crashes with the following: 1

Solution 1:

Try to restartthe adb server. Go to C/users/(username)/AppData/Local/Android/Sdk/platform-tools In the command prompt by doing

cd C/users/(username)/AppData/Local/Android/Sdk/platform-tools

and then run

adb kill-server

adb start-server

Note that the above command may change depending upon the installed location of your sdk in system.

Post a Comment for "Android Studio Emulator: Process Finished With Exit Code -1073740791 (0xc0000409)"