skip to Main Content

Since upgrading to Android Studio Bumblebee, the adb demon doesn’t start automatically when launching AS. I have to manually start it with adb start-server every time I launch AS in order to run/debug projects. That wasn’t the case before the upgrade.

The setting is set to automatically start:

enter image description here

Is there a way to start it automatically when launching Android Studio?

2

Answers


  1. Chosen as BEST ANSWER

    Thanks to this answer. Resolved by disabling adb mDNS for wireless debugging:

    Android Studio > Settings > Build, Execution, Deployment > Debugger > Untick "Enable adb mDNS for wireless debugging"

    enter image description here


  2. I don’t know a way too but i helped me with a simple batch file.
    The code of this file is:

    C:Users ‘user’AppDataLocalAndroidSdkplatform-toolsadb.exe start-server

    start /d "C:Program FilesAndroidAndroid Studiobin" studio64.exe

    Of course you have to look if the path is the same on your computer.
    If you save this code in a txt-file and change the ending from ".txt" to ".bat" it should work. At least it does at my computer.

    I hope that could help because in my case it works now… Isn’t a quite beautiful solution but at least it works.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search