mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
15 lines
515 B
C#
15 lines
515 B
C#
using System;
|
|
|
|
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(Action completionHandler = null);
|
|
}
|
|
}
|