Files
rr3-apk/decompiled/sources/com/google/android/gms/measurement/internal/zzgq.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

55 lines
1.9 KiB
Java

package com.google.android.gms.measurement.internal;
import android.os.Bundle;
import androidx.annotation.VisibleForTesting;
import androidx.annotation.WorkerThread;
import com.google.android.gms.common.wrappers.PackageManagerWrapper;
import com.google.android.gms.common.wrappers.Wrappers;
/* loaded from: classes3.dex */
public final class zzgq {
final zzhj zza;
@VisibleForTesting
@WorkerThread
public final Bundle zza(String str, com.google.android.gms.internal.measurement.zzbz zzbzVar) {
this.zza.zzl().zzt();
if (zzbzVar == null) {
this.zza.zzj().zzu().zza("Attempting to use Install Referrer Service while it is not initialized");
return null;
}
Bundle bundle = new Bundle();
bundle.putString("package_name", str);
try {
Bundle zza = zzbzVar.zza(bundle);
if (zza != null) {
return zza;
}
this.zza.zzj().zzg().zza("Install Referrer Service returned a null response");
return null;
} catch (Exception e) {
this.zza.zzj().zzg().zza("Exception occurred while retrieving the Install Referrer", e.getMessage());
return null;
}
}
public zzgq(zznc zzncVar) {
this.zza = zzncVar.zzk();
}
@VisibleForTesting
public final boolean zza() {
try {
PackageManagerWrapper packageManager = Wrappers.packageManager(this.zza.zza());
if (packageManager != null) {
return packageManager.getPackageInfo("com.android.vending", 128).versionCode >= 80837300;
}
this.zza.zzj().zzp().zza("Failed to get PackageManager for Install Referrer Play Store compatibility check");
return false;
} catch (Exception e) {
this.zza.zzj().zzp().zza("Failed to retrieve Play Store version for Install Referrer", e);
return false;
}
}
}