You might also be running into ANR limits, which can vary by device/build. Just because your code is running in a service doesn't make it immune from ANR, and I've noticed that recent OS versions summarily kill ANR processes in appwidgets, rather than showing the user a dialog.
If this is happening, you should be able to see it in LogCat, and you might try moving your code into a background thread, as with an AsyncTask. String -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

