mirror of
https://github.com/bitwarden/mobile
synced 2025-12-17 16:53:26 +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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user