Analytics
Overview
The SDK includes functionality for analytics and event tracking to monitor SDK performance and usage. More detailed information about data collected by SDK see here: https://pango.gitbook.io/paas/faq/general/what-analytic-data-collect-your-sdk
Analytics Usage
SDK sends internal analytics events. Enabled by default.
Disabling Analytics
If you need to disable analytics collection for privacy reasons or to comply with specific regulations, you can call the method SetAnalyticsEnabled with false parameter to completely disable all analytics functionality on the SDK side:
var sdk = new SDK();
await sdk.SetAnalyticsEnabled(false).ConfigureAwait(false);
Last updated
Was this helpful?