Issue
After update react-native v73.1 i'm getting below error when try to run the app in windows. error Cannot start server in new window because no terminal app was specified.
Anyone faced this issues earlier?
In Mac machine there is no issues only windows facing this issue
Solution
I had the same issue using [email protected], when I had to run release mode.
In the case of debug mode, you can simply use npm start
then a
.
However, if you want to run release mode, use npm start
to run Metro, then open a new terminal and execute npx react-native run-android --mode=release
.
This worked in my case.
Answered By - kuimoani
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.