Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
4  
give a try by just restarting your device. It happens sometimes when our device goes idle. – Vikas Patidar Jan 23 '11 at 19:02
2  
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
2  
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
1  
Moving code to a path with no spaces was required. Thanks! – DataGraham Jan 9 at 22:06

21 Answers

up vote 579 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.

share|improve this answer
This might help, I'll try that. But eventually what did the trick for me is reinstalling the smartphone drivers, restarting everything and hoping for the best... It's working now. – Arye Rosenstein Jan 26 '11 at 0:19
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
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
7  
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
1  
This solution worked for me. Out of all my testing devices, this only occurred on the Samsung Galaxy S (Mac OS X, Eclipse Indigo). Maybe it's an issue with Samsung devices? – Chad Schultz Jan 24 '12 at 17:16
show 2 more comments

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.

EDIT2: Also I found out that it is preferable to use the USB port in the back of your PC, since most of the front USB ports are low powered, and really seem to be slower when uploading apks on your devices.

share|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 '12 at 15:12
@Ovidiu Latcu I got this error * daemon not running. starting it now on port 5037 ADB server didn't ACK failed to start daemon * – Shahzad Imam Sep 20 '12 at 10:48
1  
USB power was my problem. Switch to different port solved it. – markbse Jan 25 at 12:53
show 1 more comment

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

share|improve this answer
1  
I think your answer is irrelevant to the problem – Mina Samy Jun 7 '11 at 10:43
1  
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
5  
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. – Samuel 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 '12 at 18:02
show 10 more comments

Reboot the phone.

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

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

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

share|improve this answer
1  
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 '12 at 23:46

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.

share|improve this answer

In Eclipse, select WindowPreferences, then AndroidDDMS and set ADB connection time out (ms) to something longer than the default (which is 5000).

share|improve this answer
Thanks for Lord's modified. – Hugo Apr 8 at 5:56

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!!!

share|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 '12 at 23:51
I was successfully using a front port. Did a Clean and tried to debug and it would not install. Tried increasing timeout, restarting adb, rebooting phone, restaring Eclipse to no avail. Switched to a back port and it started working again. – Jim Rhodes Mar 6 at 1:11

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.

share|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

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

share|improve this answer

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.

share|improve this answer

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
share|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
Yes, this solution is the only one that worked for me. – Igor Ganapolsky Aug 20 '12 at 20:16

IF you are using Emulator then restart.

If you are using phone then reboot then phone.

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

share|improve this answer

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

share|improve this answer

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

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

Under your eclipse go to Window-->Preferences

Under this go to Android Tab select DDMS--> ADB connection timeout> increase this value(value in mill second )

share|improve this answer

Well, thanks for new methods:

  • increasing timeout in DDMS prefs
  • kill-server/start-server

I've already used:

  • killing adb.exe in task manager
  • disable/enable adb over network

But! The "completely power down/boot the phone" put me on the right track:

I'm debugging over network (not usb), so power down WIFI-router!!! and power it back again finally did it's work!

share|improve this answer

It's because of the USB problem. Unplug your USB and connect again then run your app. it will work.

share|improve this answer

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

share|improve this answer

protected by Community Apr 10 '12 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.