Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Device chooser dialog is not showing up after instant run

In Android studio 2.0 after first app launch on emulator it seems that run process is attached to it. But if I connect device and want to test app, device chooser dialog is not showing up. I tried instant run, simple run, checked configurations (it's set to show chooser dialog), but all changes are made to emulator app.

How to launch app in device without turning off emulator and losing instant run "**connection**" with emulator ?

like image 735
Ragaisis Avatar asked Apr 11 '16 07:04

Ragaisis


2 Answers

This behaviour is clearly a shortcoming that's going to be fixed in subsequent releases, there's an open issue at AOSP.

Right now I found two workarounds that don't require studio restart or killing the adb process:

  1. Force close the app on the device you have the ongoing instant-run session. This way the session will be closed and you will be asked to choose the device after next run.

  2. Press the "debug" button if you've pressed the "run" button before and vice versa. For some reason, changing from run to debug or from debug to run forces AS to close the instant run session.

like image 152
Dmide Avatar answered Sep 27 '22 22:09

Dmide


Till the issue is solved, you can do this.

In the run menu, there is an option as 'Stop app'. Using that you can force stop your app. Running again you will get the device chooser option.

Your app will be present in your earlier device or emulator. You will just have to re-launch it. (If you do not want to run again on the earlier device.)

like image 24
Ankita Avatar answered Sep 27 '22 22:09

Ankita