Prior to Android Studio 1.5, the device chooser was shown upon Gradle Build completion.
This allowed to use build time to physically configure devices, make any last minute changes or to ensure that devices were actually connected at the time of install. I also disconnected devices if I wanted to cancel my gradle run without interrumpting my workflow.
With the device chooser showing before Gradle Build completion I am forced to have my devices physically connected before starting my build; this makes me lose time I could've saved while performing any connections while the Gradle Build was completing. I am also not ensured that installation won't fail when the build is finished since any of my connected devices could no longer be available by the time the build has completed or adb could even stop responding (which is not that uncommon).
I'm sure it will still a matter of preference for some but, is it possible to configure the device chooser so that it appears after Gradle Build has completed and is ready to upload the apk to my devices?