Rabbit-R1/switch port/java/sources/androidx/profileinstaller/ProfileVersion.java

25 lines
858 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package androidx.profileinstaller;
import java.util.Arrays;
/* loaded from: classes2.dex */
public class ProfileVersion {
public static final int MAX_SUPPORTED_SDK = 33;
public static final int MIN_SUPPORTED_SDK = 24;
static final byte[] V015_S = {48, 49, 53, 0};
static final byte[] V010_P = {48, 49, 48, 0};
static final byte[] V009_O_MR1 = {48, 48, 57, 0};
static final byte[] V005_O = {48, 48, 53, 0};
static final byte[] V001_N = {48, 48, 49, 0};
static final byte[] METADATA_V001_N = {48, 48, 49, 0};
static final byte[] METADATA_V002 = {48, 48, 50, 0};
private ProfileVersion() {
}
/* JADX INFO: Access modifiers changed from: package-private */
public static String dexKeySeparator(byte[] bArr) {
return (Arrays.equals(bArr, V001_N) || Arrays.equals(bArr, V005_O)) ? ":" : "!";
}
}