1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-27 13:43:32 +00:00
Files
mobile/src/App/Services/NoopGoogleAnalyticsService.cs
2018-01-10 09:28:30 -05:00

37 lines
766 B
C#

using System;
using Bit.App.Abstractions;
namespace Bit.Android.Services
{
public class NoopGoogleAnalyticsService : IGoogleAnalyticsService
{
public void TrackAppEvent(string eventName, string label = null)
{
}
public void TrackExtensionEvent(string eventName, string label = null)
{
}
public void TrackEvent(string category, string eventName, string label = null)
{
}
public void TrackException(string message, bool fatal)
{
}
public void TrackPage(string pageName)
{
}
public void Dispatch(Action completionHandler = null)
{
}
public void SetAppOptOut(bool optOut)
{
}
}
}