mirror of
https://github.com/bitwarden/mobile
synced 2025-12-14 07:13:33 +00:00
14 lines
469 B
C#
14 lines
469 B
C#
namespace Bit.App.Abstractions
|
|
{
|
|
public interface IGoogleAnalyticsService
|
|
{
|
|
void RefreshUserId();
|
|
void TrackPage(string pageName);
|
|
void TrackAppEvent(string eventName, string label = null);
|
|
void TrackExtensionEvent(string eventName, string label = null);
|
|
void TrackEvent(string category, string eventName, string label = null);
|
|
void TrackException(string message, bool fatal);
|
|
void Dispatch();
|
|
}
|
|
}
|