- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
27 lines
945 B
Java
27 lines
945 B
Java
package androidx.profileinstaller;
|
|
|
|
import androidx.annotation.RestrictTo;
|
|
import com.facebook.internal.security.CertificateUtil;
|
|
import java.util.Arrays;
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
/* loaded from: classes.dex */
|
|
public class ProfileVersion {
|
|
public static final int MAX_SUPPORTED_SDK = 34;
|
|
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() {
|
|
}
|
|
|
|
public static String dexKeySeparator(byte[] bArr) {
|
|
return (Arrays.equals(bArr, V001_N) || Arrays.equals(bArr, V005_O)) ? CertificateUtil.DELIMITER : "!";
|
|
}
|
|
}
|