Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase automatic screen reporting is enabled in xcode log

Is the following message when my app loads have any cause for concern. If I disabled FirebaseAutomaticScreenReportingEnabled does that have any consequence? Not much info about this online.

Firebase automatic screen reporting is enabled. Call +[FIRAnalytics setScreenName:setScreenClass:] to set the screen name or override the default screen class name. To disable automatic screen reporting, set the flag FirebaseAutomaticScreenReportingEnabled to NO in the Info.plist

like image 350
Mike Flynn Avatar asked Jan 15 '17 20:01

Mike Flynn


2 Answers

Set a new key-value pair on info.plist FirebaseScreenReportingEnabled = NO.

More information follow the below picture

enter image description here

like image 86
Papon Smc Avatar answered Oct 13 '22 13:10

Papon Smc


No concern; yes, is used for analytics (bolding mine):

Sets the current screen name, which specifies the current visual context in your app. This helps identify the areas in your app where users spend their time and how they interact with your app.

FIRAnalytics +setScreenName:screenClass:

like image 22
leanne Avatar answered Oct 13 '22 12:10

leanne