- 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
20 lines
494 B
Java
20 lines
494 B
Java
package com.facebook.appevents;
|
|
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum FlushReason {
|
|
EXPLICIT,
|
|
TIMER,
|
|
SESSION_CHANGE,
|
|
PERSISTED_EVENTS,
|
|
EVENT_THRESHOLD,
|
|
EAGER_FLUSHING_EVENT;
|
|
|
|
/* renamed from: values, reason: to resolve conflict with enum method */
|
|
public static FlushReason[] valuesCustom() {
|
|
FlushReason[] valuesCustom = values();
|
|
return (FlushReason[]) Arrays.copyOf(valuesCustom, valuesCustom.length);
|
|
}
|
|
}
|