- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
25 lines
494 B
Java
25 lines
494 B
Java
package com.glu.plugins.gluanalytics;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface IPerformance {
|
|
void destroy();
|
|
|
|
void internal_LogLaunchOverhead();
|
|
|
|
void internal_SetAnalytics(IAnalytics iAnalytics);
|
|
|
|
void onPause();
|
|
|
|
void onResume();
|
|
|
|
PerfMeasure perfGetValues();
|
|
|
|
boolean perfSampleAction(String str, int i);
|
|
|
|
void perfSampleEnd(String str, Map<String, ?> map);
|
|
|
|
void perfSampleStart(String str, int i, Map<String, ?> map);
|
|
}
|