From 88e5aa1d616f0d05fb8f9e2ca8000dcfb3824c67 Mon Sep 17 00:00:00 2001 From: Sunny Goyal Date: Fri, 16 Dec 2016 09:15:32 -0800 Subject: [PATCH] Using support lib for isAtleastO check Bug: 32610406 Change-Id: I89b3c4f0c99ac605883677cf0becaab0fbf48a86 --- src/com/android/launcher3/Utilities.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/com/android/launcher3/Utilities.java b/src/com/android/launcher3/Utilities.java index 3e44e33be6..6485fc1373 100644 --- a/src/com/android/launcher3/Utilities.java +++ b/src/com/android/launcher3/Utilities.java @@ -41,6 +41,7 @@ import android.os.Bundle; import android.os.DeadObjectException; import android.os.PowerManager; import android.os.TransactionTooLargeException; +import android.support.v4.os.BuildCompat; import android.text.Spannable; import android.text.SpannableString; import android.text.TextUtils; @@ -89,9 +90,7 @@ public final class Utilities { private static final Matrix sInverseMatrix = new Matrix(); public static boolean isAtLeastO() { - // TODO: Clean this up: b/32610406 - return !"REL".equals(Build.VERSION.CODENAME) - && "O".compareTo(Build.VERSION.CODENAME) <= 0; + return BuildCompat.isAtLeastO(); } public static final boolean ATLEAST_NOUGAT_MR1 =