android timeout error

android

Solution

Try change the DDMS adb connect time out :

in Eclipse -> Windows -> Preference -> Android -> DDMS

Change the ADB Connection time out(ms) bigger whatever you want.

If it also the problem, you can try:

adb kill-server
adb devices

Then, refresh the device(s).

Problem

I have constructed my app and have tested it on the real device but for some reason it is timing out. I am not sure why. Here is Error log: ``` [2012-05-29 09:49:42 - androidGUI] Android Launch! [2012-05-29 09:49:42 - androidGUI] adb is running normally. [2012-05-29 09:49:42 - androidGUI] Performing alex.android.development.AndroidGUIActivity activity launch [2012-05-29 09:49:42 - androidGUI] Automatic Target Mode: using device '3834522F2C1E00EC' [2012-05-29 09:49:42 - androidGUI] Uploading androidGUI.apk onto device '3834522F2C1E00EC' [2012-05-29 09:49:48 - androidGUI] Failed to install androidGUI.apk on device '3834522F2C1E00EC': timeout [2012-05-29 09:49:48 - androidGUI] Launch canceled! ```

Original source