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,45 @@
package com.google.android.gms.common;
import androidx.annotation.NonNull;
/* loaded from: classes2.dex */
public class PackageVerificationResult {
private final String zza;
private final boolean zzb;
private final String zzc;
private final Throwable zzd;
private PackageVerificationResult(String str, int i, boolean z, String str2, Throwable th) {
this.zza = str;
this.zzb = z;
this.zzc = str2;
this.zzd = th;
}
@NonNull
public static PackageVerificationResult zza(@NonNull String str, @NonNull String str2, Throwable th) {
return new PackageVerificationResult(str, 1, false, str2, th);
}
@NonNull
public static PackageVerificationResult zzd(@NonNull String str, int i) {
return new PackageVerificationResult(str, i, true, null, null);
}
public final void zzb() {
if (this.zzb) {
return;
}
String str = this.zzc;
Throwable th = this.zzd;
String concat = "PackageVerificationRslt: ".concat(String.valueOf(str));
if (th == null) {
throw new SecurityException(concat);
}
throw new SecurityException(concat, th);
}
public final boolean zzc() {
return this.zzb;
}
}