Home > Net >  How to open two emulators in Android Studio _in two different windows_?
How to open two emulators in Android Studio _in two different windows_?

Time:07-27

I know how to run two different emulators but I can't have them in foreground at the same time. If I choose one, the other is hidden as window tab. It would be useful for ping-pong communication app testing. I don't find the way.

CodePudding user response:

call them from terminal and they'll be separate entities entirely. do something like /your_android_sdk/bin/emulator @emulator_name -no-snapshot-load &>/dev/null &

enter image description here

  • Related