I'm getting this error from time to time and don't know what causing this:
When trying to run/debug an Android app on a real device (Galaxy Samsung S in my case) I'm getting the following error in the Console:

Failed to install *.apk on device *:

timeout Launch canceled!

This is all the Console is telling me. LogCat doesn't provide any information. Eclipse Problems view is not showing any issues.

I tried the following steps with no success:
1. Cleaning the project (Project->Clean)
2. Restarting device, Eclipse, laptop, all of the above...
3. Moving the project to a location without spaces, according to Failed to install apk on device 'emulator-5554': timeout

The app has been debugged in the past on that device many times (app is live on Market), but this problem happens every so often, and is VERY FRUSTRATING...

Any help would be greatly appreciated! Thanks.

link|improve this question

75% accept rate
1  
give a try by just restarting your device. It happens sometimes when our device goes idle. – Vikas Patidar Jan 23 '11 at 19:02
1  
If you code has any error then it will show it in Problems View and if a runtime error occurs then it will show it in LogCat View. Thats why they are not providing any information. – Vikas Patidar Jan 23 '11 at 19:12
Thank you for answering, but the problem still occured after device restart, as I mentioned in my post. Eventually what did the trick for me is reinstalling the smartphone drivers, restarting everything and hoping for the best... – Arye Rosenstein Jan 26 '11 at 0:18
feedback

17 Answers

up vote 287 down vote accepted

Try changing the ADB connection timeout. I think it defaults that to 5000ms and I changed mine to 10000ms to get rid of that problem. If you are in Eclipse, you can do this by going through Window -> Preferences and then it is in DDMS under Android.

link|improve this answer
1  
Ran in to this problem usually with my Galaxy Tab. Increasing the timeout to 10s seems to have fixed it for now. Thanks! – Jon Turner Mar 30 '11 at 22:56
2  
YEEES!!!! Lifesaver!!!! (Galaxy Tab also) – Danail Apr 6 '11 at 11:24
1  
Had the same problem and changing the timeout to 10000 worked great. Thanks! – android-overflow Jul 27 '11 at 16:56
1  
Thanks for the hint, although I had to set it to a much higher value in my case since my environment seems to be running a lot slower. – DigiOz Multimedia Dec 29 '11 at 8:11
2  
I actually had to raise mine to 60000ms, but it worked in the end. Might be something with the usb speed or i don't know what... Thanks! – moraleida Dec 30 '11 at 17:30
show 11 more comments
feedback

What I usually do when I get this error is restarting the adb server by typing in the cmd:

adb kill-server

adb start-server

EDIT: With some never versions of the Platform Tools you can do this from the DDMS Perspective in the Devices Tab menu (near the Capture Button), click on Reset adb.

link|improve this answer
2  
Changing the DDMS timeout didn't work for me but this seems to have solved the problem for me. Awesome, thanks! – Zac Aug 23 '11 at 14:33
1  
This solved the problem for me too, as opposed to the timeout solution. – Alexander Sep 15 '11 at 12:23
For my case, this definitely points to the right direction. Timeout change has no effect. Rebooting the device always works, reset somehow puts the device in offline mode. It seems that the graceful exit of the app before uploading a new version is the key for my case. – Hong Mar 7 at 15:12
feedback

I used to have this problem sometimes, the solution was to change the USB cable to a new one

link|improve this answer
   
I think your answer is irrelevant to the problem – Mina Samy Jun 7 '11 at 10:43
Maybe the bad connection can prevent from the connection to the device to succeed. It can make sense, but you'd better try with a friend's cable before buying a new one :) +1 because he doesn't deserve a bad point for that. – Julien Jun 14 '11 at 13:33
4  
Confirmed. I can reproduce this problem when running through certain USB extension cables. – Sticky Jul 3 '11 at 14:49
2  
+1, and yes i have faced this as well. – Sam Quest Jul 5 '11 at 6:30
1  
I had like 6 devices, no problem. Then I tried this samsung galaxy s phone and it just wouldn't allow the install (even with changing the timeout, etc.). Tried a different cable and ta-da, it worked. Thanks! – fatfreddyscat Mar 8 at 18:02
show 3 more comments
feedback

Reboot the phone.

Seriously! Completely power down and power up. That fixed it for me.

link|improve this answer
adb kill-server adb start-server – Vinothkumar Arputharaj Jan 18 at 10:43
After trying all of the above, this is what finally got it working for me - thanks! :-) – Tony Leeper Jan 21 at 12:56
feedback

I get this a lot. I'm on a Galaxy S too. I unplug the cable from the phone, plug it back in and try launching the app again from Eclipse, and it usually does the trick. Eclipse seems to lose the connection to the phone occasionally but this seems to kick it back to life.

link|improve this answer
feedback

i can risk -ve ratings for this ;).

in my case i have to plug into the same port. changing the port causes this issue. so i always make sure i plug into the same USB port in which the phone's cable was plugged into the first time.

link|improve this answer
I think that the timeout issue can occur for a number of reasons, I have managed to reproduce the 'port change' issue described above. Changing to another USB port appears to resolve this issue for me. Looks like there may be numerous ways in which this can occur. – Paul Maidment Sep 17 '11 at 14:08
feedback

don't use USB 3.0 ports for connection beetwen PC and Android phone!

link|improve this answer
Thank you! This shouldn't be so far down here. This is the only thing that has fixed this problem for me. I tried all the other solutions in various different ways. I even tried all the fixes against 2 devices (N1 and Transformer) and 3 cables. I think there are multiple issues going on here depending on the device, It would be nice if we could fork a question or something like that. Either way, before you restart adb or change the timeout, first make sure you're plugged into a USB 2.x port. – Josh Purvis Mar 27 at 23:46
feedback

eclipse -> window -> Preferences -> Android ->

DDMS -> ADB connection time out(ms). default is 5 seconds
change to long

link|improve this answer
feedback

I have encountered the same problem and tried to change the ADB connection timeout. That did not work. I switched between my PC's USB ports (front -> back) and it fixed the problem!!!

link|improve this answer
Tal, you were on the right track with this. The reason switching ports fixed the issue for you, is that most likely your front ports are USB3 and your others are USB2. See my comment on another answer for more details. – Josh Purvis Mar 27 at 23:51
feedback

I tried all above but nothing works. I reboot my computer then it solved the problem

link|improve this answer
feedback

Check if your device is charged or not.

If this doesn't solve the problem, then try to use command line:

command = adb install /path/to/apk
link|improve this answer
You should use adb -d install /path/to/apk to push to the USB device or it won't work while an emulator is running – Andreas Gohr Jun 30 '11 at 19:11
feedback

Simple! Just open task manager, end the task names "adb", and restart eclipse. It will now work.

link|improve this answer
feedback

For me, unplug and re-plug the cable/ change timeout/ adb kill-server did not work. I had to restart my device and it works great. That happened to my Galaxy Tab

link|improve this answer
feedback

changing the timeout to 10000 fixed it for now too. SGS GT-9000. On my second device a vodafone 858, it never occured

link|improve this answer
feedback

Try right clicking it, and compiling it as an apk, then send the apk file to the emulator. or just do it on an actual device.

link|improve this answer
feedback

If the other devices(for my cases, iOS devices) connected to your computer, then I got this issue.

Please unplug the other devices and retry...

Of course this is the one method for this issue.

link|improve this answer
feedback

Just type in cmd prompt c:\Android\Android-sdk\platform-tools>adb kill-server then restart eclipse

link|improve this answer
feedback

protected by Community Apr 10 at 6:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.