Files
rr3-apk/decompiled/sources/com/google/android/gms/common/PackageVerificationResult.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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;
}
}