mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 09:13:15 +00:00
More GA event tracking throughout. Added dispatch when ios app is backgrounded.
This commit is contained in:
@@ -16,6 +16,7 @@ namespace Bit.App.Pages
|
||||
private readonly IFolderService _folderService;
|
||||
private readonly IUserDialogs _userDialogs;
|
||||
private readonly IConnectivity _connectivity;
|
||||
private readonly IGoogleAnalyticsService _googleAnalyticsService;
|
||||
|
||||
public SettingsEditFolderPage(string folderId)
|
||||
{
|
||||
@@ -23,6 +24,7 @@ namespace Bit.App.Pages
|
||||
_folderService = Resolver.Resolve<IFolderService>();
|
||||
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
||||
_connectivity = Resolver.Resolve<IConnectivity>();
|
||||
_googleAnalyticsService = Resolver.Resolve<IGoogleAnalyticsService>();
|
||||
|
||||
Init();
|
||||
}
|
||||
@@ -93,6 +95,7 @@ namespace Bit.App.Pages
|
||||
{
|
||||
await Navigation.PopModalAsync();
|
||||
_userDialogs.Toast("Folder updated.");
|
||||
_googleAnalyticsService.TrackAppEvent("EditedFolder");
|
||||
}
|
||||
else if(saveTask.Result.Errors.Count() > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user