Reputation: 4444
My Android Studio Logcat is stuck and does nothing. It displays Initializing ADB
and does not show filtering options and does nothing
Upvotes: 2
Views: 1865
Reputation: 4444
Invalidated Caches and Restart
did the trick. If is solved now. Thanks for your comments and answers.
Upvotes: 3
Reputation: 1093
Few solutions i tried and which worked for me in different times :
Go in devices view, delete the device and create a new one.
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