- 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
46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
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;
|
|
}
|
|
}
|