public void LogPageView() { NativeGateway.dispatch( BUNCH, "logPageView", null ); }
public void EndSession() { Debug.Log("EndSession"); NativeGateway.dispatch( BUNCH, "endSession", null ); }
public void SetAppVersion(string appVersion) { NativeGateway.dispatch( BUNCH, "setAppVersion", new Dictionary <string, object> () { { "appVersion", appVersion } } ); }
public void SetAge(int age) { NativeGateway.dispatch( BUNCH, "setAge", new Dictionary <string, object> () { { "age", age } } ); }
public void SetUserId(string userId) { NativeGateway.dispatch( BUNCH, "setUserId", new Dictionary <string, object> () { { "userId", userId } } ); }
public void SetDebugLogEnabled(bool enabled) { NativeGateway.dispatch( BUNCH, "setDebugLogEnabled", new Dictionary <string, object> () { { "enabled", enabled } } ); }
public void SetContinueSessionMillis(long milliseconds) { NativeGateway.dispatch( BUNCH, "setContinueSessionMillis", new Dictionary <string, object> () { { "milliseconds", milliseconds } } ); }
public static void registerBunch(string bunch) { NativeGateway.dispatch( MANAGER_BUNCH, "registerBunch", new Dictionary <string, object> () { { "bunch", bunch } } ); }
public void ShareText(string text) { NativeGateway.dispatch( BUNCH, "shareText", new Dictionary <string, object> () { { "text", text } } ); }
public void LogEvent(string eventId, Dictionary <string, string> parameters) { NativeGateway.dispatch( BUNCH, "logEvent", new Dictionary <string, object> () { { "eventId", eventId }, { "parameters", parameters } } ); }
public void StartSession(string apiKey) { Debug.Log("StartSession"); NativeGateway.dispatch( BUNCH, "startSession", new Dictionary <string, object> () { { "apiKey", apiKey } } ); }
public void LogError(string errorId, string message, Dictionary <string, string> parameters) { NativeGateway.dispatch( BUNCH, "logError", new Dictionary <string, object> () { { "errorId", errorId }, { "message", message }, { "parameters", parameters } } ); }