summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorJustin Morey <jmorey@google.com>2014-04-22 11:08:50 -0500
committerJustin Morey <jmorey@google.com>2014-04-22 16:18:49 +0000
commit1389a05bbd3abcfa37ff85851ec540896e0b07db (patch)
tree60b38d574f48849ddea741258a8127217d1fb0ed /library
parent602c6ca8cae4718ba8ff9f65e53305d002479359 (diff)
downloadandroid_frameworks_multidex-1389a05bbd3abcfa37ff85851ec540896e0b07db.tar.gz
android_frameworks_multidex-1389a05bbd3abcfa37ff85851ec540896e0b07db.tar.bz2
android_frameworks_multidex-1389a05bbd3abcfa37ff85851ec540896e0b07db.zip
Allow MultiDex support library to work in API 20 (KKWT)
The class loader is the same in KK (API 19) & KKWT (API 20), so only a version bump was needed. Change-Id: Ib5112e60c9a54ed042e9c71b075ecb5302c1b717 (cherry picked from commit b420940060dbce01a861760d5830416d0e9bb802)
Diffstat (limited to 'library')
-rw-r--r--library/src/android/support/multidex/MultiDex.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/android/support/multidex/MultiDex.java b/library/src/android/support/multidex/MultiDex.java
index 6e650d0..409911d 100644
--- a/library/src/android/support/multidex/MultiDex.java
+++ b/library/src/android/support/multidex/MultiDex.java
@@ -48,7 +48,7 @@ import java.util.zip.ZipFile;
*
* <p/>
* <strong>IMPORTANT:</strong>This library provides compatibility for platforms
- * with API level 4 through 19. This library does nothing on newer versions of
+ * with API level 4 through 20. This library does nothing on newer versions of
* the platform which provide built-in support for secondary dex files.
*/
public final class MultiDex {
@@ -57,7 +57,7 @@ public final class MultiDex {
private static final String SECONDARY_FOLDER_NAME = "secondary-dexes";
- private static final int SUPPORTED_MULTIDEX_SDK_VERSION = 20;
+ private static final int SUPPORTED_MULTIDEX_SDK_VERSION = 21;
private static final int MIN_SDK_VERSION = 4;