- 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
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();
|
|
}
|
|
}
|