diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-01-25 12:29:17 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-01-25 12:29:17 -0800 |
commit | 43ea4e10dc402d20f506cdb4b4f27e49b4dc0443 (patch) | |
tree | dfe0152c138c5ea28395b0244a3495b29671e305 /core/java/android/app/ActivityThread.java | |
parent | 56965f97b33941440ffa0fc711d5d0f68ea45170 (diff) | |
parent | 81e9276a479fd3a5ccc3129505c0fb018941934b (diff) | |
download | frameworks_base-43ea4e10dc402d20f506cdb4b4f27e49b4dc0443.zip frameworks_base-43ea4e10dc402d20f506cdb4b4f27e49b4dc0443.tar.gz frameworks_base-43ea4e10dc402d20f506cdb4b4f27e49b4dc0443.tar.bz2 |
Merge "Added JELLY_BEAN version name; update some targetSdkVersion docs."
Diffstat (limited to 'core/java/android/app/ActivityThread.java')
-rw-r--r-- | core/java/android/app/ActivityThread.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/ActivityThread.java b/core/java/android/app/ActivityThread.java index 455d2f0..273764f 100644 --- a/core/java/android/app/ActivityThread.java +++ b/core/java/android/app/ActivityThread.java @@ -3804,7 +3804,7 @@ public final class ActivityThread { // implementation to use the pool executor. Normally, we use the // serialized executor as the default. This has to happen in the // main thread so the main looper is set right. - if (data.appInfo.targetSdkVersion <= 12) { + if (data.appInfo.targetSdkVersion <= android.os.Build.VERSION_CODES.HONEYCOMB_MR1) { AsyncTask.setDefaultExecutor(AsyncTask.THREAD_POOL_EXECUTOR); } |