summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2014-10-18 06:57:06 -0700
committerBill Yi <byi@google.com>2015-01-30 14:24:47 -0800
commitce0117dc598f24e97b929df5567329e4816a777d (patch)
treec028bfe537607823c37e2ffc8c713c73059d3130
parent6c5b4a94207b38e039e2b6143eb1fb94eb772d08 (diff)
downloadandroid_packages_apps_Trebuchet-ce0117dc598f24e97b929df5567329e4816a777d.tar.gz
android_packages_apps_Trebuchet-ce0117dc598f24e97b929df5567329e4816a777d.tar.bz2
android_packages_apps_Trebuchet-ce0117dc598f24e97b929df5567329e4816a777d.zip
fix build
Bug: 18040469 Change-Id: I24db4d3f4b7ee10ecf5a2c65035ce112271539fb
-rw-r--r--src/com/android/launcher3/Utilities.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/Utilities.java b/src/com/android/launcher3/Utilities.java
index c0f75918d..215d63d2e 100644
--- a/src/com/android/launcher3/Utilities.java
+++ b/src/com/android/launcher3/Utilities.java
@@ -108,7 +108,7 @@ public final class Utilities {
* Indicates if the device is running LMP or higher.
*/
public static boolean isLmpOrAbove() {
- return Build.VERSION.SDK_INT >= Build.VERSION_CODES.L;
+ return Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP;
}
/**