- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
27 lines
524 B
Java
27 lines
524 B
Java
package com.ea.nimble.tracking;
|
|
|
|
import java.util.Map;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface ITracking {
|
|
void addCustomSessionData(String str, String str2);
|
|
|
|
void clearCustomSessionData();
|
|
|
|
boolean getEnable();
|
|
|
|
boolean getPostEnable();
|
|
|
|
String getSessionId();
|
|
|
|
void logEvent(String str, Map<String, String> map);
|
|
|
|
void removeCustomSessionData(String str);
|
|
|
|
void setEnable(boolean z);
|
|
|
|
void setPostEnable(boolean z);
|
|
|
|
void setTrackingAttribute(String str, String str2);
|
|
}
|