Seegatesite – how to solve ADB not responding on android studio or Eclipse. This solution can work well on ADB issues I faced. This solution I got from askubuntu.com . Hopefully the collection of the following solutions can help you to solve the problem of ADB not responding to the android studio and eclipse.
The cause of ADB not responding there are various kinds such as your operating system doesn’t support the new SDK, the problem arises after update android studio and android SDK, if you are using windows operating system and installed comodo internet security crash with android studio, and much more.
Some information error caused by the ADB not responding as follows
ADB not responding. You can wait more, or kill “adb.exe” process manually and click ‘Restart’
ADB not responding. If you’d like to retry, then please manually kill “adb” and click ‘Restart’
Table of Contents
The following set of how to resolve / fixed the ADB not responding to the android studio or eclipse
1. Downgrade platform-tools on SDK folder
Download file : platform tools Go to your Android SDK folder then Remove old /platform-tools . Paste new platform-tools. ( Recommended tips ) . source : askubuntu.com
2. Remove comodo internet security feature (if you installed comodo anti virus):
– run comodo settings
– defense+
– list active processes
– add adb.exe to trusted processes
– restart server: run “adb kill-server” “adb start-server”
Open Comodo
– Click Tasks Icon at right top
– Click Advanced Tasks
– Click Open Advanced Settings
– Select Security Settings –> File Rating –> Trusted files from left panel
– Click on the upward arrow icon at the bottom
– Click Add –> add the adb.exe
Source : http://stackoverflow.com
3. Install ia32-libs on ubuntu
sudo apt-get install ia32-libs
4. Uncheck and Check enable ADB Integration
Tools > Android > (Uncheck) Enable ADB Integration and then check it
5. Kill and start ADB server from terminal ubuntu
adb kill-server
adb start-server
Hope can fix your android studio problem, If you are interested in reading my android tutorial please read android tutorial for beginner
Leave a Reply