Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f06d75fe authored by Diksha Gohlyan's avatar Diksha Gohlyan Committed by Automerger Merge Worker
Browse files

isAtleastR to include S as well am: f10b6f4d

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/DocumentsUI/+/12245173

Change-Id: I83585a7d9b1b7a1ea6fd97b73415e9fd1c6b23d9
parents 9e241309 f10b6f4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,6 +31,6 @@ public class VersionUtils {
     */
    public static boolean isAtLeastR() {
        return Build.VERSION.CODENAME.equals("R")
                || (Build.VERSION.CODENAME.equals("REL") && Build.VERSION.SDK_INT >= 30);
                || Build.VERSION.SDK_INT >= 30;
    }
}