Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,50 @@
package com.google.android.gms.common;
import com.google.errorprone.annotations.CheckReturnValue;
import javax.annotation.Nullable;
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
/* JADX INFO: loaded from: classes2.dex */
@CheckReturnValue
public class PackageVerificationResult {
private final String zza;
private final boolean zzb;
@Nullable
private final String zzc;
@Nullable
private final Throwable zzd;
private PackageVerificationResult(String str, int i, boolean z, @Nullable String str2, @Nullable Throwable th) {
this.zza = str;
this.zzb = z;
this.zzc = str2;
this.zzd = th;
}
public static PackageVerificationResult zza(String str, String str2, @Nullable Throwable th) {
return new PackageVerificationResult(str, 1, false, str2, th);
}
public static PackageVerificationResult zzd(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 strConcat = "PackageVerificationRslt: ".concat(String.valueOf(str));
if (th == null) {
throw new SecurityException(strConcat);
}
throw new SecurityException(strConcat, th);
}
public final boolean zzc() {
return this.zzb;
}
}