Drop min sdk to 26
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user