Question
This Content is from Stack Overflow. Question asked by techyrider101
I am getting above error when trying to preview 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.”
Solution
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
Answered by Furkan
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 4.0.