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

33 lines
678 B
Java

package com.mbridge.msdk.playercommon.exoplayer2.util;
import android.annotation.TargetApi;
import android.os.Trace;
/* loaded from: classes4.dex */
public final class TraceUtil {
private TraceUtil() {
}
public static void beginSection(String str) {
if (Util.SDK_INT >= 18) {
beginSectionV18(str);
}
}
public static void endSection() {
if (Util.SDK_INT >= 18) {
endSectionV18();
}
}
@TargetApi(18)
private static void beginSectionV18(String str) {
Trace.beginSection(str);
}
@TargetApi(18)
private static void endSectionV18() {
Trace.endSection();
}
}