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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
package com.google.android.gms.measurement.internal;
import android.os.Handler;
import com.google.android.gms.common.internal.Preconditions;
/* loaded from: classes3.dex */
abstract class zzav {
private static volatile Handler zza;
private final zzil zzb;
private final Runnable zzc;
private volatile long zzd;
public abstract void zzb();
public final boolean zzc() {
return this.zzd != 0;
}
private final Handler zzd() {
Handler handler;
if (zza != null) {
return zza;
}
synchronized (zzav.class) {
try {
if (zza == null) {
zza = new com.google.android.gms.internal.measurement.zzcz(this.zzb.zza().getMainLooper());
}
handler = zza;
} catch (Throwable th) {
throw th;
}
}
return handler;
}
public zzav(zzil zzilVar) {
Preconditions.checkNotNull(zzilVar);
this.zzb = zzilVar;
this.zzc = new zzau(this, zzilVar);
}
public final void zza() {
this.zzd = 0L;
zzd().removeCallbacks(this.zzc);
}
public final void zza(long j) {
zza();
if (j >= 0) {
this.zzd = this.zzb.zzb().currentTimeMillis();
if (zzd().postDelayed(this.zzc, j)) {
return;
}
this.zzb.zzj().zzg().zza("Failed to schedule delayed post. time", Long.valueOf(j));
}
}
}