Herrbert74
Herrbert74

Reputation: 2725

Adb starts with an unattached emulator

When I start Eclipse, I always see emulator-5554 in the Devices View. If I start an application (in automatic target selection mode), it starts on this emulator, but the emulator doesn't have a window. I have to stop the system.process of the emulator every time after Eclipse startup.

I was playing around with adb from the command line, so probably I caused the issue, but I can't figure out, how. When I restart adb with the commands 'adb kill-server' and 'adb start-server', emulator-5554 starts again, so adb starts it automatically.

I read this document, but I couldn't find any information on emulator automatic startup. Neither a google search on "adb autostart emulator" helped.

How can I keep adb from running this emulator at startup?

Upvotes: 0

Views: 3015

Answers (3)

Decoder
Decoder

Reputation: 1

Had the same problem. WORKED FOR ME!

  1. Open task manager
  2. End any bluestacks processes that appears

Now the problem should be gone.

Upvotes: 0

genius.lizard2
genius.lizard2

Reputation: 11

go to task manager- Resource Monitor- in overview tab click Description to see all BlueStack in the sort- kill tree all of them.- OR ANY OTHER EMULATOR LIKE BLUESTACK.

Upvotes: 1

Sunny Kumar Aditya
Sunny Kumar Aditya

Reputation: 2846

I was having a similar problem with this non existent emulator-5554

try this

adb kill-server
adb reboot

Upvotes: 4

Related Questions