Re: [android-developers] Timeout

2012-07-30 Thread Francisco Marzoa
Hi, Could you paste the exact error message? Regards, El 29/07/2012 21:44, "Karlos Aizpurua" escribió: > Hello! > > I'm a beginner so forgive me for my lack of knowledge. > > I've done a simple App in Eclipse: However, when I run it both on the > smulator and my phone I get timeout errors. I've

[android-developers] Timeout

2012-07-29 Thread Karlos Aizpurua
Hello! I'm a beginner so forgive me for my lack of knowledge. I've done a simple App in Eclipse: However, when I run it both on the smulator and my phone I get timeout errors. I've changed de ADB connection timeout (up to 300seconds) nothing improves though. What can I do? -- You received t

Re: [android-developers] Timeout error when tryin to do REST

2012-07-27 Thread ashok chakravarthy
did you set internet permission in Manifest? On Thu, Jul 26, 2012 at 6:30 PM, Larry Meadors wrote: > Is the phone on your LAN or using the cell network? > > Larry > > > On Mon, Jul 23, 2012 at 8:50 AM, Fernando Juarez > wrote: > >> Hi I need some help: >> >> I´m developing an Android app with Ec

Re: [android-developers] Timeout error when tryin to do REST

2012-07-26 Thread Larry Meadors
Is the phone on your LAN or using the cell network? Larry On Mon, Jul 23, 2012 at 8:50 AM, Fernando Juarez wrote: > Hi I need some help: > > I´m developing an Android app with Eclipse and ADT, It´s a very simple > app. The app connects to a server via POST, it works fine when I set my IP > o my

[android-developers] Timeout error when tryin to do REST

2012-07-25 Thread Fernando Juarez
Hi I need some help: I´m developing an Android app with Eclipse and ADT, It´s a very simple app. The app connects to a server via POST, it works fine when I set my IP o my localhost IP and execute on the emulator, but when I run the app in the Android Device (my cellphone) It can´t connect, thr

Re : Re: [android-developers] timeout

2011-06-14 Thread Agoulaoui
I don't know if the previous message helped you but I encountered the same problem and I had the same problem and I found out that if I turn on networks on my phone (wifi or 3G) I don't get the error message and the installation was successful. I'm still looking why (found this post while search

[android-developers] timeout

2011-06-09 Thread bob
I keep getting this error today for some reason. I know the device is connected right. [2011-06-09 08:29:31 - jumperfi] Uploading jump.apk onto device 'I89785dcd929' [2011-06-09 08:29:38 - jumperfi] Failed to install jump.apk on device 'I89785dcd929': timeout [2011-06-09 08:29:38 - jumperfi] Laun

Re: [android-developers] timeout

2011-06-09 Thread TreKing
On Thu, Jun 9, 2011 at 8:34 AM, bob wrote: > Any ideas? Uninstall the app first; restart Eclipse; close Eclipse, kill adb, start Eclipse; restart your computer (in order of things to try). - TreKin

[android-developers] Timeout in BroadcastReceivers using IntentServices

2011-01-18 Thread James McMurray
I've got two services running. They do their work and then reschedule themselves via the AlarmManager. In the BroadcastReceiver the only thing that happens is the launching of the service via Context.startService(). Both services are IntentServices, which as far as I can tell shouldn't be causing t

Re: [android-developers] timeout on wakelock causes "WakeLock under-locked" error

2010-07-07 Thread Mark Murphy
On Wed, Jul 7, 2010 at 12:26 PM, jdeslip wrote: > Is there any way to use a timeout (as backup wakelock release in case > the app force closes for some reason) without getting this error? Check isHeld() before release()-ing it. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://gith

[android-developers] timeout on wakelock causes "WakeLock under-locked" error

2010-07-07 Thread jdeslip
Hi, I have a service that acts a download manager, downloading files in the background. I have aquired a partial wake lock while the downloads are going. When the downloads finish, I manually release the wakelock. Because I am paranoid, I acquired the wakelock also with a timeout. The problem I

[android-developers] timeout for HistoryRecord

2010-04-13 Thread Anzi
Hi, Some times when i start my activity from, i am not able see my activity on screen(I am able see a black screen and a status bar). While facing this problem i found "Activity idle/pause timeout for HistoryRecord{..." message in the logcat. Can anybody help me how to handle the above situation.

[android-developers] Timeout using apache DefaultHttpClient not working when port is closed

2009-06-10 Thread mp6800
I have a simple piece of code that allows a user to specify a URL, port, username, and password to grab a frame from a network camera. An exception is thrown properly if the url can't be resolved, or if the authentication fails. However, I can't seem to throw an exception in a reasonable amount o

[android-developers] Timeout executing service

2008-12-11 Thread sukumar
hi, I created a service which is launched by BOOT_COMPLETE event. The launched service needs to make httpget and store the data. If httpget fails, my serivce needs to make 2 httpget attempts with interval of 30s.To wait for 30sec, I used Thread.sleep() call. The problem Im facing is, once I mak