- 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
50 lines
1006 B
Java
50 lines
1006 B
Java
package com.google.android.gms.measurement.internal;
|
|
|
|
import androidx.annotation.WorkerThread;
|
|
|
|
/* loaded from: classes3.dex */
|
|
abstract class zzg extends zzd {
|
|
private boolean zza;
|
|
|
|
public zzg(zzhj zzhjVar) {
|
|
super(zzhjVar);
|
|
this.zzu.zzaa();
|
|
}
|
|
|
|
@WorkerThread
|
|
public void zzx() {
|
|
}
|
|
|
|
public final boolean zzy() {
|
|
return this.zza;
|
|
}
|
|
|
|
public abstract boolean zzz();
|
|
|
|
public final void zzu() {
|
|
if (!zzy()) {
|
|
throw new IllegalStateException("Not initialized");
|
|
}
|
|
}
|
|
|
|
public final void zzv() {
|
|
if (this.zza) {
|
|
throw new IllegalStateException("Can't initialize twice");
|
|
}
|
|
if (zzz()) {
|
|
return;
|
|
}
|
|
this.zzu.zzz();
|
|
this.zza = true;
|
|
}
|
|
|
|
public final void zzw() {
|
|
if (this.zza) {
|
|
throw new IllegalStateException("Can't initialize twice");
|
|
}
|
|
zzx();
|
|
this.zzu.zzz();
|
|
this.zza = true;
|
|
}
|
|
}
|