Deployment on multiple emulators in Android studio

I want to deploy on multiple emulator devices in android studio. Just for testing on different devices. Is it possible?

+17
android android-studio
Sep 03 '13 at 12:25
source share
1 answer

Yes it is possible.

  • Run some emulators.
  • Create a startup configuration that displays a selection dialog (target device). Run configuration
  • Run configuration.
  • Select all running emulators when Android Studio asks. Emulator selection

This will only work for a configuration without debugging Android Application , it will not work for Android Tests or debugging configurations.

You can also run the Gradle connectedCheck command to run tests on all devices outside of Android Studio.

+25
03 Sep '13 at 12:29
source share



All Articles