Reputation: 421
when i try to run two or more emulators at the same time this error appears(Error while waiting for device: The emulator process for AVD Nexus_6P_API_23 was killed. ) and only one works fine but the others are dead
the error image
Upvotes: 1
Views: 1364
Reputation: 725
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: http://developer.android.com/guide/developing/tools/emulator.html
Upvotes: 1