For some reason, when adding the uses-sdk fields in Android\'s manifest file causes crash. I\'ve not had this happen before but I can\'t get rid of it now.
The error is NetworkOnMainThreadException
Starting with ICS, you cannot do any network access on main thread. You should probably use
AsyncTask where you do network access.