Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android timeout error

Tags:

android

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!
like image 205
al23dev Avatar asked May 29 '12 08:05

al23dev


1 Answers

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).

like image 122
idiottiger Avatar answered Oct 17 '22 16:10

idiottiger