Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,75 @@
package androidx.biometric;
import android.content.Context;
import android.os.Build;
import androidx.annotation.NonNull;
/* loaded from: classes.dex */
class DeviceUtils {
private DeviceUtils() {
}
public static boolean shouldUseFingerprintForCrypto(@NonNull Context context, String str, String str2) {
if (Build.VERSION.SDK_INT != 28) {
return false;
}
return isVendorInList(context, str, R.array.crypto_fingerprint_fallback_vendors) || isModelInPrefixList(context, str2, R.array.crypto_fingerprint_fallback_prefixes);
}
public static boolean shouldHideFingerprintDialog(@NonNull Context context, String str) {
if (Build.VERSION.SDK_INT != 28) {
return false;
}
return isModelInPrefixList(context, str, R.array.hide_fingerprint_instantly_prefixes);
}
public static boolean shouldDelayShowingPrompt(@NonNull Context context, String str) {
if (Build.VERSION.SDK_INT != 29) {
return false;
}
return isModelInList(context, str, R.array.delay_showing_prompt_models);
}
public static boolean canAssumeStrongBiometrics(@NonNull Context context, String str) {
if (Build.VERSION.SDK_INT >= 30) {
return false;
}
return isModelInList(context, str, R.array.assume_strong_biometrics_models);
}
private static boolean isVendorInList(@NonNull Context context, String str, int i) {
if (str == null) {
return false;
}
for (String str2 : context.getResources().getStringArray(i)) {
if (str.equalsIgnoreCase(str2)) {
return true;
}
}
return false;
}
private static boolean isModelInPrefixList(@NonNull Context context, String str, int i) {
if (str == null) {
return false;
}
for (String str2 : context.getResources().getStringArray(i)) {
if (str.startsWith(str2)) {
return true;
}
}
return false;
}
private static boolean isModelInList(@NonNull Context context, String str, int i) {
if (str == null) {
return false;
}
for (String str2 : context.getResources().getStringArray(i)) {
if (str.equals(str2)) {
return true;
}
}
return false;
}
}