Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force show "Select deployment target" dialog

Is there a way to force the "Select deployment target" dialog to show in Android Studio? Currently the only method I know is to hit stop to get the dialog again. But this produces weird workflows with a lot of overhead when developing an app that runs on >=2 devices and you need to jump between targets and do not want the other app to stop. Currently I am hitting stop and then open the app from the launcher and not android studio. But I find myself often reproducing a state which I already had before. I really hope there is a magic key-stroke I did not yet find to force show this dialog ..-)

like image 994
ligi Avatar asked Oct 29 '22 06:10

ligi


1 Answers

Ctrl + shift + f10 did the trick for me.

Alternatively you can right-click on your main activity on the project pane on the left and select run MyActivity

Or you can simply select more than one device in "Select deployment target" dialog using shift+click.

like image 76
Pado Avatar answered Nov 15 '22 05:11

Pado