Reputation: 760
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
Reputation: 1272
Solution 1:
Solution 2:
C: \Users\USERNAME\AppData\Local\Android\Sdk\platform-tools
open command prompt on given address
type
adb disconnect
command in Command prompt
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
Reputation: 88
While your android studio running open the task manager and go to details then end adb.exe task.
Upvotes: 0
Reputation: 1
it works for me.
Simply disconnect your actual device and after loading finished, you can connect it again.
Upvotes: 0
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
Reputation: 787
for mac users
Upvotes: 7
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
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
Upvotes: -1