Mac terminal emulator has been created to open AndroidStudio

purpose

Occasionally, we just want to run the simulator, does not want to open AndroidStudio, then we can find from the terminal emulator to start the specified name by emulator simulator

step

1. Locate the location where the emulator

find . -name emulator

2. Review the list simulator that has been created

./emulator -list-avds

3. Start Simulator

./emulator @Nexus_5X_API_27_x86
或
./emulator -avd Nexus_5X_API_27_x86

Reference links

Guess you like

Origin www.cnblogs.com/luoxiaolei/p/11269153.html