HonyComb and DefaultHttpClient

There are new policies that allow application and operating system developers to set performance expectations for code executing on certain threads. You’ve attempted to invoke blocking network api’s on the ui thread of your application. Google has put in place a system that lets you know this is a bad idea and you can resolve this issue by executing your request in a separate thread or an asyncTask.

Please read this blog post. You can find information about doing async / multi-threaded apps all over SO and Google.

Leave a Comment