Drop min sdk to 26

This commit is contained in:
Suphon Thanakornpakapong
2021-10-13 09:57:22 +07:00
parent cddb7fe98a
commit a8930b5af8
8 changed files with 16 additions and 10 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ public final class Utilities {
private static final Matrix sInverseMatrix = new Matrix();
public static final String[] EMPTY_STRING_ARRAY = new String[0];
public static final Person[] EMPTY_PERSON_ARRAY = new Person[0];
public static final Person[] EMPTY_PERSON_ARRAY = (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) ? new Person[0] : null;
public static final boolean ATLEAST_O = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O;