I am run two Async Tasks in the same block of code and the doInBackGround portions of the two tasks are running simultaneously, which is causing problems. According to the article linked below in android 1.5 Async Tasks were automatically qeued by order of execution, but this feature was removed for Android 1.6. All of the Async Task queing resources I've found advocate using threadPool but this is only available for Honey Comb. Any suggestions on the right way to handle this problem?
Article: parallel execution of AsyncTask