touhid udoy
touhid udoy

Reputation: 4444

Stuck At Initializing ADB - Android Studio

My Android Studio Logcat is stuck and does nothing. It displays Initializing ADB and does not show filtering options and does nothing

screen shot

Upvotes: 2

Views: 1865

Answers (2)

touhid udoy
touhid udoy

Reputation: 4444

Invalidated Caches and Restart did the trick. If is solved now. Thanks for your comments and answers.

Upvotes: 3

Masum Billah
Masum Billah

Reputation: 1093

Few solutions i tried and which worked for me in different times :

  1. Go in devices view, delete the device and create a new one.

  2. Kill the adb through command line

    Before you execute the commands in CMD make sure that you added the adb tool to your Environment Variables path.

Killing adb

adb kill-server

Starting adb

adb start-server

other way of killing adb is Go to task manager->processes and kill the adb.exe process.

Even after doing all these if it prevails, the final thing i did is restarted my whole machine so that adb process is removed from RAM.

Hope it helped :)

Upvotes: 1

Related Questions