- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
414 B
Java
20 lines
414 B
Java
package androidx.tracing;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.RequiresApi;
|
|
|
|
@RequiresApi(18)
|
|
/* loaded from: classes.dex */
|
|
final class TraceApi18Impl {
|
|
private TraceApi18Impl() {
|
|
}
|
|
|
|
public static void beginSection(@NonNull String str) {
|
|
android.os.Trace.beginSection(str);
|
|
}
|
|
|
|
public static void endSection() {
|
|
android.os.Trace.endSection();
|
|
}
|
|
}
|