Reputation: 1232
When I want to execute react-native run-android
in terminal, I must open android studio and run android emulator first, It's tricky. Someone knows how to run android emulator in terminal?
Upvotes: 2
Views: 1235
Reputation: 609
Under your sdk install location there is a directory called tools. From there you can run;
$ ./emulator -avd my-android-image
Upvotes: 5