skip to Main Content

I am getting the above error when previewing the react app on an android studio simulator. Please help. Here is the error:

"CommandError: The development client (com.reactnative02) for this
project is not installed. Please build and install the client on the
device first."

3

Answers


  1. I was facing the same issue and below commands helped me to resolve it. Hope works for you as well.
    Firstly close your Metro Bundler and emulator, then try:

    expo run:android
    

    If it doesn’t help go with:

    npx react-native run-android
    
    Login or Signup to reply.
  2. Uninstall the application via adb:

    adb uninstall com.reactnative02
    
    Login or Signup to reply.
  3. expo start --android worked for me. This is assuming you’re using expo of course.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search