mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
disable GA exception reporting
This commit is contained in:
parent
481925ac78
commit
1b8bd494e2
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ namespace Bit.Android.Services
|
||||||
_instance.SetLocalDispatchPeriod(10);
|
_instance.SetLocalDispatchPeriod(10);
|
||||||
|
|
||||||
_tracker = _instance.NewTracker("UA-81915606-2");
|
_tracker = _instance.NewTracker("UA-81915606-2");
|
||||||
_tracker.EnableExceptionReporting(true);
|
_tracker.EnableExceptionReporting(false);
|
||||||
_tracker.EnableAdvertisingIdCollection(true);
|
_tracker.EnableAdvertisingIdCollection(true);
|
||||||
_tracker.EnableAutoActivityTracking(true);
|
_tracker.EnableAutoActivityTracking(true);
|
||||||
_tracker.SetClientId(appIdService.AnonymousAppId);
|
_tracker.SetClientId(appIdService.AnonymousAppId);
|
||||||
|
|
|
@ -18,7 +18,7 @@ namespace Bit.iOS.Core.Services
|
||||||
_authService = authService;
|
_authService = authService;
|
||||||
|
|
||||||
Gai.SharedInstance.DispatchInterval = 10;
|
Gai.SharedInstance.DispatchInterval = 10;
|
||||||
Gai.SharedInstance.TrackUncaughtExceptions = true;
|
Gai.SharedInstance.TrackUncaughtExceptions = false;
|
||||||
_tracker = Gai.SharedInstance.GetTracker("UA-81915606-1");
|
_tracker = Gai.SharedInstance.GetTracker("UA-81915606-1");
|
||||||
_tracker.SetAllowIdfaCollection(true);
|
_tracker.SetAllowIdfaCollection(true);
|
||||||
_tracker.Set(GaiConstants.ClientId, appIdService.AnonymousAppId);
|
_tracker.Set(GaiConstants.ClientId, appIdService.AnonymousAppId);
|
||||||
|
|
Loading…
Reference in a new issue