fork-dev / Tracker

Bug and issue tracker for Fork for Mac
510 stars 12 forks source link

Request for clarification: Analytics #1910

Closed Idane closed 1 year ago

Idane commented 1 year ago

Hi,

Does Fork use any type of analytics for anonymized usage/crash data?

DanPristupov commented 1 year ago

At the beginning we used Fabric to count the active users, but about 4 years ago we removed it. Now Fork doesn't send any telemetry or analytics and we don't know how many people use it.

We also removed Google Analytics from the website.

We use AppCenter as a crash handler. The analytics module is explicitly disabled (we only use 'Crashes'):

On Mac:

        AppCenter.start(withAppSecret: Const.appcenterSecret, services: [Crashes.self])

On Windows:

       AppCenter.Start(Const.AppcenterSecret, typeof(Crashes));
Idane commented 1 year ago

Thanks!