Files
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

35 lines
896 B
Java

package com.google.android.gms.common.stats;
import androidx.annotation.NonNull;
import com.google.android.gms.common.annotation.KeepForSdk;
import com.google.android.gms.common.internal.ReflectedParcelable;
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
@KeepForSdk
@Deprecated
/* loaded from: classes2.dex */
public abstract class StatsEvent extends AbstractSafeParcelable implements ReflectedParcelable {
@KeepForSdk
public interface Types {
@KeepForSdk
public static final int EVENT_TYPE_ACQUIRE_WAKE_LOCK = 7;
@KeepForSdk
public static final int EVENT_TYPE_RELEASE_WAKE_LOCK = 8;
}
@NonNull
public final String toString() {
return zzb() + "\t" + zza() + "\t-1" + zzc();
}
public abstract int zza();
public abstract long zzb();
@NonNull
public abstract String zzc();
}