How is the number of users defined in Firebase Crashlytics

Foreword:

Because of work needs, arrange to understand and access Firebase Crashlytics. I took a look at the official website, and then started to connect the Crashlytics function to the demo. My God, it looks so powerful, and it only needs to integrate a few libraries to complete it. There is no need to initialize and so on in the code. Isn't it awesome~. Ho ho ho. . .

What is Firebase Crashlytics? ? ?

Firebase Crashlytics is a lightweight real-time crash reporting solution. Reports of crashes, nonfatal errors, and Application Not Responding (ANR) errors can be collected. Get alerted when a problem suddenly becomes critical; find out which lines of code caused the crash. Simply put, it is similar to the domestic bugly and umeng crash statistics functions. Once integrated, comprehensive crash reporting is available in the Firebase console.

Alright, alright, I won’t introduce how to integrate here, just go straight to the topic. Firebase Analytics identifies users based on the application instance ID, and Firebase Analytics automatically generates and assigns an application instance ID to each instance of the application. This ID is used to calculate user metrics throughout Analytics and appears as user_pseudo_id in bigquery . The application instance ID is different after reinstallation, so it will be regarded as a new user. After testing, the number of users who install once +1.

 

Guess you like

Origin blog.csdn.net/u010207898/article/details/125190071