Kousalya
Kousalya

Reputation: 760

Android device list showing in Android Studio got stuck

enter image description here

Stuck in Loading Devices in Android Studio. Found below question in Stack Overflow but not helped,

Android Studio device list stuck on loading

I have tried invalidate cache and restart, but not solved. Please any body help me to solve this issue. My Android Studio version is 4.1.1 Thanks in Advance.

Below Answer Solved my issue:

https://stackoverflow.com/a/49345049/11630822

Upvotes: 3

Views: 5548

Answers (7)

Muzammil Hussain
Muzammil Hussain

Reputation: 1272

Solution 1:

  1. Close Android Studio
  2. open task manager
  3. Kill adb process (on Task Manager on Windows)
  4. Open Android Studio

Solution 2:

  1. turned OFF your Wi-Fi
  2. open

C: \Users\USERNAME\AppData\Local\Android\Sdk\platform-tools

  1. open command prompt on given address

  2. type

adb disconnect

command in Command prompt

enter image description here

  1. Restart Android studio

Solution 3:

Go to SDK folder delete platform-tools folder.. invalidate and restart the studio

Solution 4: Some times you have Anti-Virus in your P.C (Personal Computer) that's why loading Device issue comes into play. In this case,Turn off Anti-Virus and restart your P.C (Personal Computer) and run Android Studio your issue will be solved.

Note: if these solution are not working then let me know i'll fix for you...

Upvotes: 0

Nahom Ersom
Nahom Ersom

Reputation: 88

While your android studio running open the task manager and go to details then end adb.exe task.

Upvotes: 0

Pedram Fahimi
Pedram Fahimi

Reputation: 1

it works for me.

Simply disconnect your actual device and after loading finished, you can connect it again.

Upvotes: 0

Adnan Bashir
Adnan Bashir

Reputation: 763

i faced same problem and spend half day to fix this .finally done . this problem is due to Adb not working well so you need to stop/disconnect adb open platform tools folder from C partition

C:\Users\addipc\AppData\Local\Android\Sdk\platform-tools

open command prompt from this folder via entering 'cmd' in path bar

press enter button and run command
adb disconnect

if not work with this then connect it again

run command this again

adb tcpip 5555

That's it

Upvotes: 3

Yıldırım
Yıldırım

Reputation: 787

for mac users

  1. Closing android studio.
  2. Open Activity Monitor
  3. Search adb
  4. Force quit adb search results.

Upvotes: 7

Andrew
Andrew

Reputation: 2896

What helped me is to reinstall Android Studio and ADB from scratch. Sounds like a bit an overhead but it worked.

Upvotes: 0

gatwirival
gatwirival

Reputation: 313

I had the same problem too.Seems I had not installed

platform tools

Go to

setting->Android SDK->SDK Tools Then tick Android SDK tools

enter image description here

Upvotes: -1

Related Questions