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