1
0
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:
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);
}
}