1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-09 12:03:16 +00:00

Added google analytics service implementation for iOS and android

This commit is contained in:
Kyle Spearrin
2016-08-03 21:25:01 -04:00
parent b5dfe2d336
commit 41deae60f5
9 changed files with 3431 additions and 2926 deletions

View File

@@ -0,0 +1,9 @@
namespace Bit.App.Abstractions
{
public interface IGoogleAnalyticsService
{
void TrackPage(string pageName);
void TrackEvent(string category, string eventName);
void TrackException(string message, bool fatal);
}
}

View File

@@ -37,6 +37,7 @@
<ItemGroup>
<Compile Include="Abstractions\Repositories\IAccountsApiRepository.cs" />
<Compile Include="Abstractions\Repositories\IDeviceApiRepository.cs" />
<Compile Include="Abstractions\Services\IGoogleAnalyticsService.cs" />
<Compile Include="Abstractions\Services\IAppInfoService.cs" />
<Compile Include="Abstractions\Services\IAppIdService.cs" />
<Compile Include="Abstractions\Services\IAuthService.cs" />