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:
9
src/App/Abstractions/Services/IGoogleAnalyticsService.cs
Normal file
9
src/App/Abstractions/Services/IGoogleAnalyticsService.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
@@ -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" />
|
||||
|
||||
Reference in New Issue
Block a user