How to Open Android emulator inside Android Studio from command line

Quick reference

Sometimes we need to start an Android Emulator instance from the command line to achieve different things, e.g. use a different DNS because we are behind some service like a PiHole. If we use the traditional way, we will get a new instance in a very own window, but having it inside Android Studio is more comfortable without a doubt.

To achieve this, we need to the following params:

-qt-hide-window -grpc-use-token -idle-grpc-timeout 300

And this is all the magic you will need!

A more complete example:

emulator -netdelay none -netspeed full -avd Android_TV_1080p_API_25 -qt-hide-window -grpc-use-token -idle-grpc-timeout 300 -dns-server "8.8.8.8,8.8.4.4"`