Donut is API level 4, well below honeycomb, since it was released in 2009. By the way, you don't *support* different versions, you just get whatever you're on.
Why do you need tasks to run in parallel? This is probably an indication you're doing something you shouldn't. In general it is a very bad idea to *rely* on the system scheduler to enforce a scheduling policy. Kris On Tue, Jul 16, 2013 at 9:06 AM, Ashish Sharma <[email protected]> wrote: > Hi, > > what if want to support it for below HONEYCOMB version.. > > > On Tuesday, July 16, 2013 4:08:09 PM UTC+5:30, Piren wrote: >> >> did you read the documentation? >> http://developer.android.com/reference/android/os/AsyncTask.html >> >>> Order of execution >>> >>> ________________________________ >>> >>> When first introduced, AsyncTasks were executed serially on a single >>> background thread. Starting with DONUT, this was changed to a pool of >>> threads allowing multiple tasks to operate in parallel. Starting with >>> HONEYCOMB, tasks are executed on a single thread to avoid common application >>> errors caused by parallel execution. >>> >>> If you truly want parallel execution, you can invoke >>> executeOnExecutor(java.util.concurrent.Executor, Object[]) with >>> THREAD_POOL_EXECUTOR. >> >> >> On Tuesday, July 16, 2013 12:38:48 PM UTC+3, Ashish Sharma wrote: >>> >>> Hi, >>> >>> I have checked that two Async task nerver run parallely . >>> suppose i started two two async task parallely then second task run only >>> when first one finish.. >>> >>> is there any way to to run async tasks parallely? >>> any other alternate way? > > -- > -- > 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 > --- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > -- -- 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 --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

