Raj
Raj

Reputation: 693

Starting 2 emulators in android

I was wandering if there was any easy way to start 2 emulators in android. I have looked at the developers guide but theres not enough information to help me. Please could someone explain how this is done. Thanks

Upvotes: 3

Views: 2923

Answers (1)

Anton Hansson
Anton Hansson

Reputation: 2171

To my knowledge you can't start the same emulator twice, but by creating two separate emulators you can start them both at the same time.

You create new emulators using the Android SDK manager's ("SDK Manager.exe", located in your android install directory) "Virtual Devices" tab.

You can then start them in the command prompt using

emulator -avd <avd_name>

More info here: https://developer.android.com/studio/run/emulator-commandline.html

Upvotes: 2

Related Questions