Reputation: 16152
I know this question is asked multiple time and there are some alternative answer also.So please don't close with some other link because i have added that link below.
[2014-01-23 16:19:44 - adb] ADB server didn't ACK
[2014-01-23 16:19:44 - adb] * failed to start daemon *
....
....
[2014-01-23 14:48:10 - My App] The connection to adb is down, and a severe error has occured.
[2014-01-23 14:48:10 - My App] You must restart adb and Eclipse.
[2014-01-23 14:48:10 - My App] Please ensure that adb is correctly located at 'E:\Chintan Khetiya\Android KIT\adt-bundle-windows-x86_64-20130522\adt-bundle-windows-x86_64-20130522\sdk\platform-tools\adb.exe' and can be executed.
Some of the grate Answer
/Platform-Tool
to /Tool
- I don't know but i have tried this one also.Finally I am looking for some solution in which i can solve this issue because i am facing this issue at least four times in a day so i am irritate now to restart again and again. I am wasting my 1 hours for this issue in a day.
Anyone have some permanent solution for my issue.?
I don't know why this error showing me in console.
System Requirements:
Environment Path:
E:\Chintan Khetiya\Android KIT\adt-bundle-windows-x86_64-20130522\adt-bundle-windows-x86_64-20130522\sdk\platform-tools;
E:\Chintan Khetiya\Android KIT\adt-bundle-windows-x86_64-20130522\adt-bundle-windows-x86_64-20130522\sdk\tools
Thank you.
Upvotes: 21
Views: 35243
Reputation: 1
Upvotes: 0
Reputation: 5753
Ok I solved my issue. I go to Task Manager in windows7 -> processes -> selected the adb.exe -> End Process
. After that I go to cmd
prompt and type adb start-server
. This time adb statred succefully. I run eclipe and it was showing no error.
Upvotes: 1
Reputation: 95
Along with the above all suggested answer try this one also, it worked for me
copy the hprof-conv.exe from C:\adt\sdk\tools to C:\adt\sdk\platform-tools and copy the adb.exe from C:\adt\sdk\tools to C:\adt\sdk\platform-tools
Upvotes: 1
Reputation: 131
Below steps worked for me.
If No error message is thrown while starting ADB server, then adb is started successfully.
Now you can start Eclipse again. Restart phone.
Upvotes: 2
Reputation: 6444
add the path to SDK tools and platform tools in your classpath from Environment Variables. Then restart Eclipse.
Upvotes: 1
Reputation: 1703
I had face this problem and got solution too. Follow these steps after close your adt -
1.Re install java I will suggest jxpiinstall to be install
2. Execute that file adb.exe
3. Set the envirnoment path again
4. And Here you can have your working adt
I hope this will help you.
Upvotes: 1
Reputation: 2436
I Face this problem many time i solve in my way like this and it is working
Then in command line go to your directory of platform-tools like
C:\AndroidSetup\sdk\platform-tools>
Then write following command step by step
C:\AndroidSetup\sdk\platform-tools>adb kill-server
C:\AndroidSetup\sdk\platform-tools>adb start-server
After successfully message come your adb is running now .
Now you can start your eclispe your.
Upvotes: 13